$(document).ready(function(){

	var timeout1;
	
	$("ul.links > li").hover(
	  function () {
	  	clearTimeout(timeout1);
		$(this).find("a").addClass('hover');
		$(this).find("ul").fadeIn();
	  }, 
	  function () {
	 	$(this).find("a").removeClass('hover');
	 	timeout1 = setTimeout(function() {
	  		$("ul.links li ul").fadeOut();
	  	}, 300);
	  }
	);

    $('#buy_link').bind('click', function(event){ event.preventDefault(); });
    $('#buy_link').bind('mouseover', function(event){ $(event.target).css('cursor','default'); });   
});


