$(function (){
		$('.menu_cont').hover(function(){
											
											$(this).find('.sub_menu').show();
											}, 
								function(){
												$(this).find('.sub_menu').hide	();
										}
								);
		
		
		$('.fotos_holder .thumb a').mouseenter(
										function(){
											
											
											$(this).parents('.fotos_holder').find('.preview').html($(this).clone().removeClass('opacity'));
											
											$(this).parent().find('.opacity').removeClass('opacity');
											$(this).addClass('opacity');

											$(this).parents('.fotos_holder').find('.preview_info').html(
													"<table width='100%'>" +
													"<tr><td>" +
													"<div class='dategray'>" +
													$(this).attr('date')+
													"</div></td><td width='100%'>" +
													"<a href='"+$(this).attr('href')+"'>" +
													$(this).attr('alt') +
													"</a></td></tr></table>");
										}
								);
		$('.fotos_holder .thumb a:first-child').trigger('mouseenter');
		
		$(".fb_img").fancybox({"titlePosition":"over"});
		
		$(".fb_iframe").fancybox({"type":"iframe",
		width:'90%',
		height:'90%'
		});
		
		
});

