$(document).ready(function(){
/*	$.preloadImages(
		'./guide/img/guide2.png',
		'./guide/img/guide3.png',
		'./guide/img/guide4.png',
		'./guide/img/guide5.png',
		'./guide/img/guide6.png'
	);
*/
	$('#incense_guide').bind('click', function(){
		$.show_guide();
	}).hover(function(){
		$(this).css('cursor','pointer');
	}, function(){
		$(this).css('cursor','default');
	});
	$('#guide6_3,#guide6_4,#guide6_5').hover(function(){
		$(this).css('background-position', '0 0');
	},function(){
		$(this).css('background-position', '0 -12px');
	});
	$('#guide2_1').hover(function(){
		$(this).css('background-position', '0 0');
	},function(){
		$(this).css('background-position', '0 -14px');
	});
});
$.extend({

	'guide_no' : 1,
	'guideHtml': '',
	
	'show_guide' : function(){
			if($.guideHtml == ''){
				$.guideHtml = $('#guide').html();
			}else{
				$.guide_no = 1;
				$('#container').prepend('<div id="guide">' +$.guideHtml+ '</div>');
			}
			$('#guide a.next_guide').bind("click", function(){
				$.next_guide();
				return false;
			});

			$('#guide a.go_shopping,#guide a.close')
				.bind('click', function(){
					$('#guide' +$.guide_no).animate({
							left : '-140px',
							top : '580px',
							height : 10,
							width : 5,
							opacity : 0
						}, 500, 'easeOutSine',function(){
							$('#guide').remove();
						});
					return false;
				});

			$('#guide a.close')
				.hover(function(){
					$(this).children().attr('src', '../incense_details/img/btn_close_o.jpg');
				}, function(){
					$(this).children().attr('src', '../incense_details/img/btn_close.jpg');
				});
	},
	
	'next_guide' : function(){
		$('#guide' +$.guide_no).fadeOut('slow', function(){
			$.guide_no++;
			$('#guide' +$.guide_no).fadeIn('fast');
		});
	},
	
	'preloadImages' : function(){
		for(var i = 0; i<arguments.length; i++){
			$("<img>").attr("src", arguments[i]);
		}
	}
});