

$(document).ready(function () {

$("#types li:nth-child(3n)").addClass("remove");


	$("#top-menu li .cat-name").mouseenter(function(){
		$(".top-sub").hide();
		$(this).addClass("current");
		$(this).parent().find(".top-sub").show()
	});
	
	$("#top-menu li").mouseleave(function(){
		$(".cat-name").removeClass("current");
		$(this).find(".top-sub").hide()
		
	});

$('.autoclear').click(
function() {
if (this.value == this.defaultValue) {
this.value = '';
}
}
);
$('.autoclear').blur(
function() {
if (this.value == '') {
this.value = this.defaultValue;
}
}
);

});


