jQuery(document).ready(function($){ 

// 	content-left navigation
	$("#dropmenu li:has(ul)").addClass("hasChild");

// 	add a break in the memo
	$("#g-memo .textwidget").each(function () {
		$(this).html($(this).html().replace('#','</p><p>'));
	});

// 	horizontal menu drop-down
	$("#dropmenu ul").css({display: "none"}); // Opera Fix 
	$("#dropmenu li").hover(function(){ 
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(268); 
	},function(){ 
		$(this).find('ul:first').css({visibility: "hidden"}); 
	}); 

// 	easy zoom
	$("a.zoom").removeAttr("rel").easyZoom({
		id: "imagezoom",
		preload: "<p class='preloader'>Loading the image</p>",
		parent: ".text"
	});

// end
})

