$(document).ready( function(){ 
	$(".newsletter-input").focus( function(){
		$(this).val('');
	});
	$(".search-input").focus( function(){
		$(this).val('');
	});

	var hide = false;
	// close my account rollover when this button is pressed
	$("#myaccount_rollover_close img").click(function(){
		$("#myaccount_rollover").fadeOut("fast");
		return false;
	});
	// close your basket rollover when my account button is hovered
	$(".myaccount_btn").hover(function(){	
		$("#yourbasket_rollover").fadeOut("fast");
		return false;	
	});
	$(".myaccount_btn").hover(function(){
		if (hide) clearTimeout(hide);
		$("#myaccount_rollover").fadeIn();
	}, function() {
		hide = setTimeout(function() {$("#myaccount_rollover").fadeOut("fast");}, 150);
	});
	$("#myaccount_rollover").hover(function(){
		if (hide) clearTimeout(hide);
	}, function() {
		hide = setTimeout(function() {$("#myaccount_rollover").fadeOut("fast");}, 150);
	});
	// close your basket rollover when this button is pressed
	$("#yourbasket_rollover_close img").click(function(){			
		$("#yourbasket_rollover").fadeOut("fast");
		return false;
	});
	var hide = false;
	$(".yourbasket_btn").hover(function(){
		if (hide) clearTimeout(hide);
		$("#yourbasket_rollover").fadeIn();
	}, function() {
		hide = setTimeout(function() {$("#yourbasket_rollover").fadeOut("fast");}, 150);
	});
	$("#yourbasket_rollover").hover(function(){
		if (hide) clearTimeout(hide);
	}, function() {
		hide = setTimeout(function() {$("#yourbasket_rollover").fadeOut("fast");}, 150);
	});

	$('.product_rollover').clone().prependTo("body");
	$("#categoryGrid .product_rollover").remove();
	$(".photo img").mouseenter(function(e){
			$('#' + $(this).attr("id") + "_rollover").css("position", "absolute");
			$('#' + $(this).attr("id") + "_rollover").fadeIn(50);
			$(this).mousemove(function(e2){
				$('#' + $(this).attr("id") + "_rollover").css("top", e2.pageY - 85);
				$('#' + $(this).attr("id") + "_rollover").css("left", e2.pageX + 30);
				});
			});
	$(".photo img").mouseleave(function(e){
			$('.product_rollover').hide();
			});
	$('.product_rollover_last').clone().prependTo("body");
	$("#categoryGrid .product_rollover_last").remove();
	$(".content-even4-last .photo img").mouseenter(function(e){
			$('#' + $(this).attr("id") + "_rollover").css("position", "absolute");
			$('#' + $(this).attr("id") + "_rollover").fadeIn(50);
			$(this).mousemove(function(e2){
				$('#' + $(this).attr("id") + "_rollover").css("top", e2.pageY - 85);
				$('#' + $(this).attr("id") + "_rollover").css("left", e2.pageX - 310);
				});
			});
	$(".content-even4-last .photo img").mouseleave(function(e){
			$('.product_rollover_last').hide();
			});
	$(".content-even4 .photo img").mouseleave(function(e){
			$('.product_rollover_last').hide();
			});




});
