/*# AVOID COLLISIONS #*/
(function($){
/*# AVOID COLLISIONS #*/

//on page load call tb_init
$(document).ready(function(){   
	mlink_init('a');//pass where to apply thickbox
});


function mlink_init(domChunk){
	$(domChunk).click(function(){
	var t = this.title || this.name || null;
	var a = this.href || this.alt;	
	var trg = this.target || null;
	
	if(trg =='fwindow') {
		mlink_show(t,a, trg);
		this.blur();		
		return false;
	}
	});
}

function mlink_show(caption, url, trg) {//function called when the user clicks on a thickbox link

	
	openWin(url,'no','no','no','yes','yes','yes','yes','500','350');
}

/*# AVOID COLLISIONS #*/
})(jQuery);
/*# AVOID COLLISIONS #*/

