/**
 * Core JS File (included on every page for main functions)
 *
 * Wild Futures' Monkey Sanctuary Website (monkeysanctuary.org)
 * Website Desiged & Developed by Papertank (papertank.co.uk)
 * Copyright (c) Papertank LLP (hello@papertank.co.uk) 2010. All rights reserved.
 *
*/

$(document).ready(function(){

	$("#wrapper").corner('round top 20px cc:#337755');
	$("#wrapper").corner('round bottom 20px cc:#40661b');	
	
	$('.corners').corner();
	
	//Navigation fix
	$("ul#topnav li").hover(function() { //Hover over event on list item
		$(this).css({ 'background' : '#49771c'}); //Add background color and image on hovered list item
		$(this).find("ul").show(); //Show the subnav
	} , function() { //on hover out...
		
		if ( ($(this).is('.current-menu-item') == false) && ($(this).is('.current-menu-parent') == false) ) {
			$(this).css({ 'background' : 'none'}); //Ditch the background
			$(this).find("ul").hide(); //Hide the subnav				
		}
	});	

});