// JavaScript Document
$(document).ready(function() {
	
	// look for any "close" buttons in the lightboxes
	$(".close a").each(function() {
	
		$(this).click(function() {
			self.parent.tb_remove();
		});
								
	});

	
	// add PNG hack to IE6
	jQuery.each(jQuery.browser, function(i, val) {
	  if(i=="msie" && jQuery.browser.version.substr(0,3)=="6.0") {
		DD_belatedPNG.fix('*');
	  }
	});
	
	// defuscate the emails
	$(".eml").defuscate();
	
	// init the lightboxes
	var lb_params = '?TB_iframe=true&height=450&width=565&modal=true';
	
	/*$(".thickbox").each(function() {
		
		$(this).attr('href', $(this).attr('href') + lb_params);
								 
	});*/
	
});