// JavaScript Document

$(document).ready(function(){
    fixImages();
    
    $("div#topNav ul.SLevel-1 li").hover(
	    function(){
	        $(this).find('ul').removeClass("jsHide");
	    },
	    function(){
	        $(this).find('ul').addClass("jsHide");
	    }
    );
    
        
});

function fixImages(){
    $("div#pageContent img").each(function(){
        var img = $(this);
        img.attr("src",img.attr("src") + "?width="+img.width()+"&height="+img.height()+"");
    });
}
