//Reset the javascript variables for Renaissance Women and Couples tour flags
var rwFlag = 0;
var cFlag = 0;


$(document).ready(function (){
        $('#menu li').mouseover(
            function(){
                //show the submenu
                 $('ul', this).stop(true, true).delay(50).animate({ "height": "show", "opacity": "show" }, 200);
            }
            );
        $('#menu li').mouseleave(
            function(){
                //hide the submenu
                 $('ul', this).stop(true, true).delay(50).animate({ "height": "hide", "opacity": "hide" }, 200);
            }
        );
        
        $('#menu li').first().css('background','none');
        
        $('#Foto-saint-inner a').colorbox({innerWidth:550,innerHeight:330,opacity:.60,previous:"<img src='"+templateDir+"/images/cb_previous.gif' />" ,close:"<img src='"+templateDir+"/images/cb_close.gif' />" ,next:"<img src='"+templateDir+"/images/cb_next.gif' />" , iframe:true});
        
        $('.imgPopup').colorbox({width:600,scalePhotos:true,opacity:.60,previous:"<img src='"+templateDir+"/images/cb_previous.gif' />" ,close:"<img src='"+templateDir+"/images/cb_close.gif' />" ,next:"<img src='"+templateDir+"/images/cb_next.gif' />",photo:true});
        
        $('.imgPopupLg').colorbox({initialWidth:400,maxHeight:800,opacity:.60,photo:true,previous:"<img src='"+templateDir+"/images/cb_previous.gif' />" ,close:"<img src='"+templateDir+"/images/cb_close.gif' />" ,next:"<img src='"+templateDir+"/images/cb_next.gif' />"});
        
        if (rwFlag == 1) {
            $('#ngTestimonials').html('<img src="'+templateDir+'/images/rw_logo.gif" />');
        } else if (cFlag == 1) {
            $('#ngTestimonials a').html('<img src="'+templateDir+'/images/large_heart.gif" />');
        } else {
            $('#ngTestimonials').html('<a target="_blank" name="National Geographic" href="http://traveler.nationalgeographic.com/2010/04/feature/amalfi-text"><img height="76" width="115" title="cookingvacations" alt="National Geographic" src="'+templateDir+'/images/ng_homelink.gif" /></a>');
        }
        
        $('#ngHome').html('<a target="_blank" name="National Geographic" href="http://traveler.nationalgeographic.com/2010/04/feature/amalfi-text"><img height="76" width="115" title="cookingvacations" alt="National Geographic" src="'+templateDir+'/images/ng_homelink.gif" /></a>');
        
        $('.hide-kid-title').hide();
        
    }
);
