// JavaScript Document
$(document).ready(function() {
	
	//rollover lingua
	$(".menu_rollover img").hover(function () {
	  this.src = this.src.replace('_off','_on');	  
	}, function () {
	  this.src = this.src.replace('_on','_off');
	});	
	
	$("a[rel='#credits']").overlay({ 
        expose: '#DDDDDD',     
    	opacity: 0.7, 
        effect: 'apple',  
        onBeforeLoad: function() { 
            // grab wrapper element inside content 
            var wrap = this.getContent().find(".contentWrap");  
            // load the page specified in the trigger 
            wrap.load(this.getTrigger().attr("href")); 
        } 
 
    });

});
