$(function(){
	$('body :first-child').addClass('firstChild');
	$('body :last-child').addClass('lastChild');
	$('body :empty').addClass('empty');
	$('body :only-child').removeClass('firstChild');
	$('body :only-child').removeClass('lastChild');
	$('body :only-child').addClass('onlyChild');
	$('a img').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('_ro', '_ro_f2'));
			}, function(){
				 if (!$(this).hasClass('currentPage')) {
				 $(this).attr('src', $(this).attr('src').replace('_ro_f2', '_ro'));
		}
	});
	$('#gNav a,.sNav>li>a,#sBnr a,#headerTab a,.blend a').css('cursor','pointer').blend();
	$('#pagetop img').css('cursor','pointer').hover(
        function(){
            $(this).stop().animate({paddingTop : '0px'},'normal','swing');
        },
        function(){
            $(this).stop().animate({paddingTop : '10px'},'normal','easeOutBounce');
        }
    );
	$('img.fade,a.fade img,.fade a img').hover(function() {
		$(this).stop().fadeTo(500,0.6);
	}, function() {
		$(this).stop().fadeTo(500,1);
	});
	$('#breadcrumb li:not(:last-child) a').after(' > ');
	$('#products .productsList li:nth-child(4n)').css('padding-right','0');
	$('#sNavChild_cake').appendTo('#sNavProducts li.sNavLi3');
	$('#sNavChild_decorated').appendTo('#sNavProducts li.sNavLi4');
	$('#sNavChild_baked').appendTo('#sNavProducts li.sNavLi5');
	$('#sNavChild_bridal').appendTo('#sNavProducts li.sNavLi6');
	$('#sNavChild_gift').appendTo('#sNavProducts li.sNavLi7');
	$('#sNavChild_season').appendTo('#sNavProducts li.sNavLi8');
	$('#shop .parent2 li:nth-child(3n)').css('width','190px');
	$('#shop .parent2 li').css('cursor','pointer').click(function(){
			 window.location=$(this).find('a').attr('href');
			 return false;
	});
	$('title').prepend($('h1').text() + '│');
});
function ShowNowYear() {
   var now = new Date();
   var year = now.getFullYear();
   document.write(year);
}
