$(document).ready(function(){
		
		wiev();   
        	
	
});

function wiev(){

		for (var i=0; i <=$('.top_tours_container ul li').length;i++){
			
			$('#t'+i).hide();	
			open_close(i);

		}
}
function open_close(i){

$('.tour'+i).mouseover(function(e) {
$('#t'+i).show();
     				 var x = e.pageX+5;
        			 var y = e.pageY+5;

					$('#t'+i).css('left',x);
					$('#t'+i).css('top',y);
	
})
$('.tour'+i).mouseout(function(){


$('#t'+i).hide();	
					$('#t'+i).css('left',0);
					$('#t'+i).css('top',0);
})
					   
			
	
	
}
/*
function open_close(){
	
		$('.small_picture li').find("a").click(function (e){
	
			e.preventDefault();	
			var activeinfo = $(this).attr("href");
			

					for (var i=1; i <=$('.small_picture li').length;i++){				
							
							if(activeinfo==i){
								
								//$("#adv1").find("a").removeAttr('class');
								//$(this).attr("class","active");
								$('#t'+activeinfo).show();					

							}
							else
							{
								
								$('#t'+i).hide();
									
							}
					}
			
			
			});
	
	
	
}*/
