$(document).ready(function() {
	$('#share_menu_popup').hover(function() {
		$(this).find('ul').show()
	},
	function() {
		$(this).find('ul').hide()
	});

	// si las fotos son horizontales, añadimos margenes
	var fotos_5_10 = $('#restofotos img');
	if ( fotos_5_10.length != 0 )
	{
		fotos_5_10.each(function(i,img){
			img = $(img);
			// foto horizontal
			if ( img.height() > img.width() )
			{
				img.css({'margin-right': '10px'});
			}
			else
			{
	// 			img.css({'display': 'block', 'margin-right': 'auto', 'margin-left': 'auto' });
			}
		});
	}
	// si no tiene más fotos, escondemos la capa.
	else
	{
		$('#restofotos').hide();
	}
	Shadowbox.init();
});
