$(document).ready(function(){ 
	$("ul.sf-menu").supersubs({ 
		minWidth:1,
		maxWidth:20,
		extraWidth:1           
	}).superfish();
		
	$("a#signup").click(function () {	
		$("#content").colorbox({inline: true, href: "#newsletter_form", open: true, height: 350, scrolling: false}); 
		return false;
	});
	
	if (document.location.hash == '#signup'){
		$("a#signup").click();
	}
});
