// 
// 		@Author: 		Jannis Gundermann
// 		@Job: 			McCashin's Frute Website
// 		@Date: 			14/12/2009
// 		@By: 				Supply Ltd.
// 		@Web: 			http://www.supply.net.nz/
// 
$(document).ready(function() {
	
	// add a class to body indicating that JS is enabled
	$('body').addClass('hasjs');
	
	// apply rel attribute dynamically for the defaultValue func
	$('form input, form textarea').each(
		function() {
			$(this).attr('rel', $(this).attr('name'));
		}
	);
	// in field labels
	$('input,textarea').defaultValue();
	
	// hide .more content
	$('div.more').hide();
	// toggle hidden .more content
	$('body.ingredients div.item h2,body.recipes h3').each(
			function() {
				$(this).click(function() {
					$(this).next('.more').slideToggle('fast');
					$(this).toggleClass('highlight');
				});
			}
		);
			
});
