var $j = jQuery.noConflict();

$j(document).ready(function() {
	// Product list
	$j('#productListing div.productSummary').mouseenter(function() {
		$j(this).css('background-color', '#fff7ee');
	})
	.mouseleave(function() {
		$j(this).css('background-color', '#ffffff');
	});
	
	// Language buttons
	$j('li.en:not(li.active)').mouseenter(function() {
		$j(this).css('background-image', 'url(/assets/images/flags/en_active.gif)');
	})
	.mouseleave(function() {
		$j(this).css('background-image', 'url(/assets/images/flags/en.gif)');
	});
	
	$j('li.sv:not(li.active)').mouseenter(function() {
		$j(this).css('background-image', 'url(/assets/images/flags/sv_active.gif)');
	})
	.mouseleave(function() {
		$j(this).css('background-image', 'url(/assets/images/flags/sv.gif)');
	});

	// News list
	var active = $j('ul.newsList li.current');	
	$j('ul.newsList li:not(.current)').mouseenter(function() {
		active.css('background-color', '#FFFFFF');
		$j(this).css('background-color', '#FFF7EE');
		//#FFF7EE #A3C6E0
	})
	.mouseleave(function() {
		active.css('background-color', '#FFF7EE');
		$j(this).css('background-color', '#FFFFFF');
	});

});
