$(document).ready(function() {
/*
	$('div.product').hover(function() {
		elem = this;
		showHand(elem);
	}, function() {
		elem = this;
		hideHand(elem);
	});
*/

	/*$('div.product, div.tillval').hover(function() {
		$(this).stop().animate({ backgroundColor: "#3f75f2", color: '#ffffff'}, 800);  
                },function() {  
                $(this).stop().animate({ backgroundColor: "#ffffff", color: '#000000' }, 800);  
	});*/

});

function formsubmit() {
	if($('#epost').val() == '') {
			alert('Ange din epostadress!');
			return false;
		}
		else {
			return true;
		}
}

function showHand(elem) {
	$(elem).append('<div id="hand" />');
}

function hideHand(elem) {
	$('#hand').remove();
}
