$(function()
{
	if ($.browser.msie && $.browser.version == 7)
	{
		$('#content').fadeIn(1000,function(){this.style.removeAttribute('filter'); });
	} else if ($.browser)
	{
		$('#content').fadeIn(1000);
	}
});

			
$(function(){
                $("img.rollover").hover(function(){
                $(this).stop(true, false).fadeTo(300,0.3);},
                function(){
                $(this).stop(true, false).fadeTo(300,1.0);});
                });


