/********************************************************************************
/* NAVIGATION DROPDOWN AND HIGHLIGHT CUSTOM SCRIPT
/* 
/* Written by Cary Buchmann. (cjbuchmann)
/* March 2011
/*******************************************************************************/
$(function(){
	new JSDropDown("#property_nav", "#properties_dropdown").initialize();
	new JSDropDown("#venue_nav", "#venues_dropdown").initialize();
	
	$(".nav_dropdown li").mouseover(function(){
		$(this).addClass("highlighted_dropdown");
	}).mouseout(function(){
		$(this).removeClass("highlighted_dropdown");
	});
});

$(function(){
	if($.browser.msie && $.browser.version == 7)
		$("select").css({ background : "none", color : "#000" });
});

//functionality to load the twitter, facebook, and email links in a new frame
$(function(){
	
});

$(function(){
	new JSSitemap().init();
	
	preloadImage(email_roll);
	preloadImage(twitter_roll);
	preloadImage(facebook_roll);
});

function preloadImage(image_src)
{
	var image = document.createElement("img");
	image.setAttribute("style", "display:none;");
	image.setAttribute("class", "preloaded_image");
	image.setAttribute("src", image_src);
	$("body").append(image);
}

function loadSocialFrame(network, networkFrame)
{
	$(network).click(function(){
		if($(networkFrame).is("visible"))
		{
			networkFrame.fadeOut("fast");
		}
		else
		{
			networkFrame.fadeIn("fast");
		}
	});
}

//setup the sendToFriend
$(function(){
	_jsSendToFriend = new JSSendToFriend(js_base_url+"index.php/");
	_jsSendToFriend.init();
});
