// JavaScript Document

// Normal jQuery items
$(document).ready(function() {
	//turn off "print" and "email" buttons on artilces
	$("a[@target='print_this']").css({display: "none"});
	$("a[@target='email_this']").css({display: "none"});
	
	// Flash Banner
	
	$("#headWrap")
		.append('<div id="nav"><img src="/files/1578484/intro_nav.jpg" width="950px"  border="0" usemap="#Map" /><map name="Map" id="Map"><area shape="rect" coords="120,120,226,153" href="/cgi-bin/homesearch" alt="Search MLS" /><area shape="rect" coords="254,120,439,153" href="/content/article.html/2416329" alt="Wynmoor Village Tour" /><area shape="rect" coords="465,121,637,153" href="/content/article.html/2416331" alt="Activities andd Athletics" /><area shape="rect" coords="660,118,784,152" href="/files/1578484/Wynmoor%20Map.JPG" alt="Wynmoor Map" /><area shape="rect" coords="813,118,935,152" href="/content/article.html/2416469" alt="Coconut Creek" /><area shape="rect" coords="50,154,251,185" href="/files/1578484/LEASE%20APPLICATION%202010.pdf" alt="Lease Condo" /><area shape="rect" coords="277,154,404,190" href="http://www.wynmoorrealtor.com/files/1578484/WYNMOOR%20CONDO%20SALES%20APP%20CANADIAN.pdf" alt="Sale Condo" /><area shape="rect" coords="433,154,601,185" href="/content/article.html?id=2414779" /><area shape="rect" coords="634,153,786,184" href="/content/article.html?id=2416333" /><area shape="rect" coords="817,154,882,188" href="/content/contact.html" /><area shape="rect" coords="8,123,107,151" href="/cgi-bin/listredir" /></map></div>');


	// Add tiny top nav in header
	$("#extraNav")
		.append('<ul><li><a href="/?CI=1">Home</a></li></ul>');
		
		// New test method for adding/removing classes to the main nav
		$("#nav li").hover(
		  function () {
			$(this).addClass("navhover");
		  }, 
		  function () {
			$(this).removeClass("navhover");
		  }
		);
});
