$(document).ready(function(){
	$('#haku_trigger').click(function(event){
		event.preventDefault();
		$('#haku').toggle();
	})
	$(".hilight:not(.valittu)").hover(

		function(){
			$(this).css("background-position", "0 -" + $(this).css('height'));
		},
		function(){
			$(this).css("background-position", "0 0");
		}
	);
});

function removeFromCart(id)
{
	xajax.call( "removeCart",  {
		parameters: [ id ],
		mode: "synchronous"
	} );
	location.reload(true);
	return false;
	function orderDone()
	{
		addedToCart();
	}
}
