// ====================== //
//  Bottom Ad Rotator     //
// ====================== //
	var adSrc = new Array()
	// Add ad images and html here
	adSrc[0] = '<h3 class="hidden">Toys that Teach</h3><p class="hidden">Protected Wildlife dog toys are not only fun for pets. They also include fun and activities for kids!</p><a href="http://www.sergeants.com/products/ProductCatalog.asp?one=1&two=69&three=222" target="_blank" title="Learn More"><img src="/images/bottomAds/protect-collect.jpg" alt="Toys that Teach" border="0" /></a>'
	//adSrc[1] = '<h3 class="hidden">Yip Yap little treats from CHOMP are absolutely irrisistible.</h3><p class="hidden">Find out more about natural treats for cats and dogs.</p><a href="http://chompinc.com/" target="_blank" title="Learn More"><img src="/images/bottomAds/yip_yap.jpg" alt="Natural Treats for Dogs and Cats!" border="0" /></a>'

	var j = 0
	var p = adSrc.length;
		
	var preBuffer = new Array()
	for (i = 0; i < p; i++){
		 preBuffer[i] = new Image()
		 preBuffer[i].src = adSrc[i]
	}
		
	var whichAd = Math.round(Math.random()*(p-1));
	
	function showAd(){
		document.write(adSrc[whichAd]);
	}


$(document).ready(function(){
	
	// ===================== //
	//  Hover Class for IE   //
	// ===================== //
 	$(" #nav li").hover(function(){
        $(this).addClass('hover');
		//$("li.hover ul").slideDown(300);
    }, function(){
		//$("li.hover ul").slideUp(300);
        $(this).removeClass('hover');
        });
	
	// ======================== //
	//  Urchin Tracking Code    //
	// ======================== //
	
	_userv=0;
	urchinTracker();
});

