window.onload = Shadowbox.init;
Shadowbox.loadSkin('shadowbox', './style/');

$(document).ready(function(){

	// .png - Fix IE6
	// apply to all png images
	$.ifixpng('./style/blank.gif');
	$('.pngfix').ifixpng();
	$('div#content img').ifixpng();
	
	$('div#nav2 img').hover(function(){
		// mouseover
		$(this).attr('src', $(this).attr('src').replace(/do/g, "up"));
	},function(){
		// mouseout
		if(!$(this).hasClass('meta_active')){
			$(this).attr('src', $(this).attr('src').replace(/up/g, "do"));
		}
	});

});