// JavaScript Document
$(document).ready(function(){
	var height0=$(".pos1").height();				   
	$(".pos1").css({ opacity: 'hide',width:'359',height:'0' }); 
	$(".pos1 a").css({width:'359' }); 
	$(".pos1 li").css({width:'359' }); 
	$(".pos2").css({ opacity: 'hide',width:'159',height:'0' });		   
	$(".pos3").css({ opacity: 'hide',width:'159',height:'0' }); 			   
	$(".pos4").css({ opacity: 'hide',width:'360',height:'0' });				   
	$(".pos5").css({ opacity: 'hide',width:'159',height:'0' });
	$("#lists>li:eq(0)").hover(function(event){
		
		$("#lists>li:eq(0) .pos1").stop(true,true).animate({ opacity: '0.85',width:'359',height:'230'}, "slow"); 
		
	},
	function(){
														   
		$(".pos1").stop(true,true).animate({ opacity: 'hide',width:'359',height:'0' }, "slow"); 
	}
	);
	$("#lists>li:eq(1)").hover(function(event){
		
		$("#lists>li:eq(1) .pos2").stop(true,true).animate({ opacity: '0.85',width:'159',height:'160'}, "slow"); 
		
	},
	function(){
														   
		$(".pos2").stop(true,true).animate({ opacity: 'hide',width:'159',height:'0' }, "slow"); 
	}
	);
	$("#lists>li:eq(2)").hover(function(event){
		
		$("#lists>li:eq(2) .pos3").stop(true,true).animate({ opacity: '0.85',width:'159',height:'140'}, "slow"); 
		
	},
	function(){
														   
		$(".pos3").stop(true,true).animate({ opacity: 'hide',width:'159',height:'0' }, "slow"); 
	}
	);
	$("#lists>li:eq(3)").hover(function(event){
		
		$("#lists>li:eq(3) .pos4").stop(true,true).animate({ opacity: '0.85',width:'360',height:'220'}, "slow"); 
		
	},
	function(){
														   
		$(".pos4").stop(true,true).animate({ opacity: 'hide',width:'360',height:'0' }, "slow"); 
	}
	);
	$("#lists>li:eq(4)").hover(function(event){
		
		$("#lists>li:eq(4) .pos5").stop(true,true).animate({ opacity: '0.85',width:'159',height:'120'}, "slow"); 
		
	},
	function(){
														   
		$(".pos5").stop(true,true).animate({ opacity: 'hide',width:'159',height:'0' }, "slow"); 
	}
	);


	
});