jQuery(function(){
	
	// Bookmarks
	
	$(".link-bookmark a.bookmark").bind("mouseover",function(event){
		$(".bookmark_layer").show();
		event.preventDefault();
	});
	
	$(".bookmark_layer").bind("mouseleave",function(event){
		$(".bookmark_layer").hide();
	});
});