

$(document).ready(function() {	
	$(".block_nav_overlay").hide();	
	$(".overlay_button").hide();
	colorbg = null;
	$(".block_nav_item").hover(
 		function () {
 			colorbg = $(this).children(".block_nav_item_text").css("background-color");
			$(this).children(".block_nav_overlay").show();
    		$(this).children(".block_nav_item_text").css("background-color", "#b7b68f");
  		}, 
  		function () {
    		$(this).children(".block_nav_overlay").hide();
    		$(this).children(".block_nav_item_text").css("background-color", colorbg); 
 		}
	);

if(pageid == "17") {
        $("#lodges").children(".block_nav_item_text").css("background-color", "#b7b68f");
}
if(pageid == "18") {
        $("#maciain").children(".block_nav_item_text").css("background-color", "#b7b68f");
}
if(pageid == "19") {
        $("#caravans").children(".block_nav_item_text").css("background-color", "#b7b68f");
}
if(pageid == "21") {
        $("#touring").children(".block_nav_item_text").css("background-color", "#b7b68f");
}
if(pageid == "20") {
        $("#hobbits").children(".block_nav_item_text").css("background-color", "#b7b68f");
}
	
	
});
