ddsmoothmenu.shadow.enable = false;

if($("#smoothmenu").length) {
	ddsmoothmenu.init({
		mainmenuid: "smoothmenu",
		orientation: "h",
		contentsource: "markup"
	});

	$(".top-tab").mouseover(function() {
		var el = "#" + $(this).attr("id");
		$(el + "-left").css("backgroundImage", "url(/images/mnu-l2-over.gif)");
		/*$(el + "-right").css("backgroundImage", "url(/images/mnu-r2-over.gif)");*/
		$(el + "-center").css("backgroundImage", "url(/images/mnu-r2-over.gif)");
	}).mouseout(function() {
		var el = "#" + $(this).attr("id");
		$(el + "-left").css("backgroundImage", "url(/images/mnu-l2.gif)");
		/*$(el + "-right").css("backgroundImage", "url(/images/mnu-r.gif)");*/
		$(el + "-center").css("backgroundImage", "url(/images/mnu-r.gif)");
	});
}

if($("#smoothmenu-small").length) {
	ddsmoothmenu.init({
		mainmenuid: "smoothmenu-small",
		orientation: "h",
		contentsource: "markup"
	});

	$(".top-tab-small").mouseover(function() {
		var el = "#" + $(this).attr("id");
		$(el + "-left").css("backgroundImage", "url(/images/mnu-l2-over-small.gif)");
		$(el + "-right").css("backgroundImage", "url(/images/mnu-r2-over-small.gif)");
		$(el + "-center").css("backgroundImage", "none").css("backgroundColor", "#FFFFFF");
	}).mouseout(function() {
		var el = "#" + $(this).attr("id");
		$(el + "-left").css("backgroundImage", "url(/images/mnu-l2-small.gif)");
		$(el + "-right").css("backgroundImage", "url(/images/mnu-r2-small.gif)");
		$(el + "-center").css("backgroundImage", "url(/images/tab-gb-small.jpg)");
	});
}

