jQuery(document).ready(function() {
	jQuery('.podsNav').hide();
	
	 jQuery('#tentsNav').hover(function(){
			jQuery('.podsNav').show();
			//console.log("over");
		},function(){
			jQuery('.podsNav').hide();
			//console.log("out");
			})	
	
	jQuery('.podsNav').click(function(){
		window.location.href = "camping-pods.php";
		return false;
		})
});
