jQuery(function($){

	if($('#Menu li.current a img').length == 1){
		
		$('#Menu li.current a img').attr({src : $('#Menu li.current a img').attr('src').replace('off\.png','on.png')});
	}

	$('#bakery.section .content table.bread img').each(function(){
		var href = $(this).attr('src').replace('.jpg','_b.jpg');
		var title = $(this).attr('alt');
		$(this).wrap('<a href="' + href + '" title="' + title + '" />');

	});

	$('#bakery.section .content table.bread a').fancybox({
		openEffect : 'fade',closeEffect: 'fade',
		openSpeed : 800 , closeSpeed : 400,
		maxWidth : 240,
		helpers: {
				overlay: {
					opacity: 0.2,
					css: {backgroundColor : '#000'	}
				}
			}
	});


});

jQuery('#bakery.section .content a.innerlink').live('click', function(event) {
	$('html,body').animate({scrollTop: $('#kodawari').offset().top}, 2000, 'swing');
	return false;

});


