$(document).ready(function() {
	$("#menu li").mouseover(function() {
		$(this).css('backgroundColor', '#eee');
	});
	
	$("#menu li").mouseout(function() {	
		if ($(this).attr('id') != 'current')
		{
			$(this).css('backgroundColor', '');
		}
	});
	
	$("#garage").click(function() {
		location.href='http://www.malarvik.se/recond';
	});
	
	$("#weekoffer").click(function() {
		location.href='http://www.malarvik.se/erbjudande';
	});
	
	$("#trybuy").click(function() {
		location.href='http://www.malarvik.se/begagnat';
	});
});
