$(document).ready(function() {
	formHelp();
	hideShopMenu();
	imgHelp();
});

// formhelp script --------------------------------------------------
function formHelp(){
	$("label span").css({position:"relative"});
	$("label img").css({display:"inline"});
	$("label em").addClass("formhelp");
	$("label em").hide();
	$("label img").hover(
		function(){
			$(this).parent().parent().find("em").show();
		}, function() {
			$(this).parent().parent().find("em").hide();
		}
	);
}

// shop menu script -------------------------------------------------
function hideShopMenu(){
	$(".shop-menu-items").hide();
	$(".shop-menu-show").show();
	$(".shop-menu-items").parent().find("a:first").click(function(){
		$(".shop-menu-items").hide();
		$(this).attr("href","javascript:void(null)").parent().find("ul").show();
	});
}

// formhelp script -------------------------------------------------
function imgHelp(){
	$(".td-size span").css({position:"relative"});
	$(".td-size img").css({display:"inline"});
	$(".td-size em").addClass("imghelp");
	$(".td-size img").hover(function(){
		$(this).parent().find("em").show();
	},function(){
		$(this).parent().find("em").hide();
	});
}
