
$(function()
{
    $(window).load(function(){
		if(scripts_isIE6) $(document).pngFix();
	}
    );

    $("div.dnav").mouseover(function(){
	
            var divId = $(this).attr("id");
            $("div#"+divId+"-on").css("display", "block");
            //$(this).fadeOut("fast");
        }
    );
    
    $("div.dnavon").mouseout(function(){
            var divId = $(this).attr("id");
	    
            $(this).css("display", "none");

	    
           // $("#"+divId).fadeIn("fast");
        }
    );

    $("a[rel^='lightbox']").prettyPhoto({
	animationSpeed: 'slow',
	padding: 40,
	opacity: 0.80,
	showTitle: false,
	allowresize: true,
	counter_separator_label: '/',
	theme: 'dark_square'
    });

});