$(function(){
   	
	//CYCLE find more variables at http://jquery.malsup.com/cycle/options.html
	$('.slideshow').after('<div id="next"></div><div id="prev"></div>')
	.cycle({
		fx: 'scrollHorz',
		next: '#next',
		prev: '#prev',
		cleartype: true,
		cleartypeNoBg: true
	});
	
	$('#nav > li.nav_parent > a').each(function(){
		$(this).append('<span>');
	});
	
	$('.custom1').wrap('<div class="custom1_outer" />');
	
	//VALIDATION use a different id to validate seperate forms.
	$('#contactForm').fishValidate();
	
});

