$(document).ready(function(){
	$('#top_img_container img').eq(2).animate({opacity:1},{duration:1});	
	
	$('.phSecs').bind({
		mouseover:function(){
			thsIndex=$('.phSecs').index(this);
			try{
				$('#top_img_container img').animate({opacity:0},{duration:300,queue:false})
				.eq(thsIndex).animate({opacity:1},{duration:300,queue:false});
			}
			catch(e){}
		},
		/*click:function(){
			console.log($(this).nodeName);
				wLoc=$(this).children('.PhButton').attr('href');
				window.location=wLoc;
			
		}*/
	});
});
