$(function() {
	// opacity Rollover

	$('#productsArea a img, #businessFP p a img, #bottomArea li a img').hover(
		function () {
			$(this).css('opacity', 0.85);
		},
		function () {
			$(this).css('opacity', 1);
		}
	);
});

