/* <![CDATA[ */

$(document).ready(function(){

	$(document).pngFix();
	
	jQuery.fn.MailTo = function() {
		return this.each(function(){
			var mailtoText = $(this).text();
			mailtoText = mailtoText.replace("[at]","@");
			mailtoText = mailtoText.replace("[dot]",".");
			mailtoText = mailtoText.replace("[dot]",".");
			$(this).html("<a href=\"mailto:"+mailtoText+"\">"+mailtoText+"</a>");
		});
	};
	$(".elink").MailTo();
	
	$('.modal').append(function() {
		var href = $(this).attr('href');
		var append = '';
		if ((href.indexOf( "/wp-content/uploads/") == -1) && (href.indexOf( "/images/") == -1)) {
			append = 'modal/true/';
		}
		$(this).attr('href',href+append)
	});		
	
	$(".modal").fancybox({
		titleShow:false,
		scrolling:'no',
		padding:0,
		centerOnScroll:true,
		overlayColor:'#FFFFFF',
		overlayOpacity:0.8,
		showCloseButton:true
	});		
	
	$('a[rel*=external]').click( function() {
		window.open(this.href);
		return false;
	});	
	
}); 

/* ]]> */
