function mouseOverMenu(id,img){
		id.src = "imgs/menu/"+img+"Over.gif";
}
function mouseOutMenu(id,img){
		id.src = "imgs/menu/"+img+".gif";
}

/* Modal Presentation */
$(document).ready(function() {
	// modal Presentation
	function getPresModal() {
            $.ajax({
                url: 'pres-modal.htm',               
                success: function(dados) {                   
                   
                    presmodal = $(dados).html();
                   
                    $('.modal-overlay').prepend(presmodal);                   
                   
                }               
            })
    };
   
    $('#largeHighlight .hit-area').click(function() {
    	getPresModal();
        $('.modal-overlay').animate({'opacity': 'show'}, 'slow');
                
        return false;
    });
    
    
    $('.close-modal').live('click',function() {
        $('.modal').animate({'opacity': 'hide'}, 'fast');
        $('.modal-overlay').animate({'opacity': 'hide'}, 'slow');     
        $('.modal').remove();
        
        return false;
    });
    
    // Flash Home
    if($('.flashHome').length){
		$('.flashHome').flash(
			{
				swf		: 'imgs/largeHighlight.swf?idioma=de',	
				width	: 770,
				height	: 80
			}
		);
	} 
});
