$(document).ready(function() {

$("img").lazyload({
	placeholder : "/images/grey.gif",
    effect : "fadeIn"
    });

$("img#facebook").hide();

	$("a.fancy").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200,
		callbackOnClose :  function () {
			$("img").lazyload({
				placeholder : "/images/grey.gif",
			    effect : "fadeIn"
		    });
	    }
	});
	
    //Set opacity on each span to 0%
    $(".rollover").css({'opacity':'0'});

	$('ul#menu li a').hover(
		function() {
			$(this).find('.rollover').stop().fadeTo(500, 1);
		},
		function() {
			$(this).find('.rollover').stop().fadeTo(5000, 0);
		}
	)
	
 $(function(){
   var path = location.pathname.substring(1);
   if ( path )
     $('ul#menu_interno li a[href$="' + path + '"]').attr('class', 'selected');
 });

});

