$(document).ready(
	function() {
		initMenu();
		
		$('.product-overview IMG').each(
			function (i) {
				$(this).fadeTo('fast', 0.7);
			}
		);
		$('.product-overview IMG').hover(
			function () {
				$(this).fadeTo('fast', 1);
			}, 
			function () {
				$(this).fadeTo('fast', 0.7);
			}
		);
	}
);
