$(function() {
	// If a user hovers over a fragrance image, it should be "selected"
	var products	= $('#header .client .products');
	
	products.children().hover(function() {
		$(this).siblings().removeClass('selected');
		$(this).addClass('selected');
	});
	
});
