$(document).ready(function(){	
	var badBrowser = (/MSIE ((5\.5)|6)/.test(navigator.userAgent));
	
	$("ul.top-nav li").hoverIntent(function() { 
		//Following events are applied to the sub-nav itself (moving sub-nav up and down)
		$(this).find("ul.sub-nav").slideDown(100); //Drop down the sub-nav on hover
		
		},
		function (){
			$(this).find("ul.sub-nav").slideUp(100); 
		}
	);
	
	 
	
	$(".post-specifics").corner("5px");
	$("#sidebar").corner("5px");
	
	$(".sociable > ul").hide();
	var sociableVisible = 0;
	
	$("p.share-toggle").click( function (){
		if(sociableVisible == 0){
			$(".sociable > ul").show('slow');
			sociableVisible = 1;
		}
		else{
			$(".sociable > ul").hide('slow');
			sociableVisible = 0;
		}
	});	
	
});
