
$(document).ready(function() {


		//thumbnail switch on product page
		$('.single .th img').click(function(){
			var picture = $(this).attr('src');
			var newpicture = picture.replace('.jpg','_full.jpg');
			$('.single p.full').html('<img src="' + newpicture + '" alt="" />');
		});
		
		
		//add 'more' to recipe index
		if($('.recipe #navsub').length > 0) {
			$('#navsub > li > a').each(function(){
				var morehref = $(this).attr('href');
				var recipesul = $(this).parent().children('ul');
				$(recipesul).append('<li class="morerecipes"><a href="' + morehref + '">See All Recipes</a></li>');
				
			});
			
		
		}
		
        
});



