//javascript
jQuery(document).ready(function($){  
	
	if(!$.browser.msie){
		$('a').hover(function() {
			$(this).stop().animate({ "opacity": 0.4 });
		}, function() {
			$(this).stop().animate({ "opacity": 1 });
		});
	}
	
	
	if($.browser.msie){
		$('#logo').pngFix(); 
		$('#footer').pngFix(); 
	}
});