$(document).ready(function(){

$(document).pngFix();

/* MENU 1 */
$('.lev1, .lev2').hover(function(){
$(this).find('ul').show().find('.lev2ul').hide();
$(this).css('color','#ebc117').children().css('color','white')
},
function(){
$(this).children().hide();
$(this).css('color','')
})


/* MENU 2 */


$('#menu2, #Nav2').mouseover(function(){
$('#Nav2').show(); 
}).mouseout(function(){
$('#Nav2').hide();

});

/* SLIDESHOW */

$('#dImage').cycle({
    timeout:   4000

});


/* li hover */

$('.lev2ul li').hover(
function(){$(this).css('color','#ebc117')},
function(){$(this).css('color','')}
);



})


function fnAjx(newPic){
$(document).ready(function(){
	$(".dBar").load('subpages/'+newPic+'-txt.htm');
    $("#dImage").load('subpages/'+newPic+'.htm');
   
    
  });
 
}

