window.intShop = {
	
	informerHoverImage : function()
	{
		$('#Item001').mouseover(function() {
//			var currentSrc = $('#Item001').attr('src');
//			var newSrc = currentSrc.replace('.list', '.details');
//			newSrc = newSrc.replace('/thumbnails', '');
//			$('#Item001').attr('src', newSrc);
			$('#ItemDesc001').show('slow');
		});
		
		$('#Item001').mouseout(function() {
//			var currentSrc = $('#Item001').attr('src');
//			var newSrc = currentSrc.replace('.details', '.list');
//			newSrc = newSrc.replace('items/', 'items/thumbnails/');
//			$('#Item001').attr('src', newSrc);
			$('#ItemDesc001').hide('slow');
		});
		
		$('#Item002').mouseover(function() {
			$('#ItemDesc002').show('slow');
		});
		$('#Item002').mouseout(function() {
			$('#ItemDesc002').hide('slow');
		});
		$('#Item003').mouseover(function() {
			$('#ItemDesc003').show('slow');
		});
		$('#Item003').mouseout(function() {
			$('#ItemDesc003').hide('slow');
		});
	},
	
	slidePromo : function()
	{
		$('#promo').delay(1000).effect("slide", {}, 1000);
	}
};
