jQuery(document).ready(function() {

	jQuery('#content').fadeIn(800); //Fade content on page load

	//Main Menu
	jQuery(function(){
	  jQuery('.region-header .menu li ul').hide();  // initiate to hide all the ul inside the li
	jQuery('.region-header .menu>li').hover(function(){
	 jQuery('ul:first',this).show(); // shows when mouse over
		    },function(){
		        jQuery('ul:first',this).hide(); // hides when mouse out!
		    })
	jQuery(".region-header .menu > li ul li:has(ul)").find("a:first").append(" » "); // adding the arrow
	})

	//Make entire big bullet clickable
	jQuery(".bigbullet").click(function(){
	     window.location=jQuery(this).find("a").attr("href");
	     return false;
	});

});
;

