$(function() {
	var options = {
	    zoomWidth: 300,
	    zoomHeight: 250,
            xOffset: 10,
            yOffset: -206,
            position: "right" //and MORE OPTIONS
};

$(".jqzoom").jqzoom(options);
});



$(function(){
	$(".downmenu").hover(function(){
		$(".menudropped").toggle("fast");
	});
	
	$(".body,.post").click(function(){
		$(".menudropped").hide("fast");
	});
});