$(document).ready(function () {

	$('.tripleBoxListBox ul.tripleBoxList li h3').rowHeight({ cols: 3 });
	$('#LeftAdsBox ul#LeftAdsList').simpleCycle({ width: 215 });
	$('#MainMenu #MainMenuBox .mainMenuListBox.level0>ul.mainMenuList').menuSpacer();
	$('#ContactSummary ul').contactSpacer();

//	$('.content img').each(function () {
//		$(this).attr('src', 'http://www.clitheroebeauty.co.uk' + $(this).attr('src'));
//	});

	/* behaviour for shopping cart summary */
	$("#CartTab").hover(
		function () {
			$('#CartSummaryOuter').slideDown();
		},
		function () {
			$('#CartSummaryOuter').hide();
		}
	);
});

