$(document).ready(function(){
	// round corners
	$('.homeBox, .RoundCorner').corner("10px");
	
	// top navigation
	$('ul#nav li').hover(
		function(){ $(this).children('ul').show(); },
		function(){ $(this).children('ul').hide(); }
	);
	$('ul#nav li.current_page_item').prev('li').addClass('noBorder');
	
	// interior nav
	$('ul.cat-nav li:first').addClass('first');
	
	// testimonial slideshow
	$('#testimonialSlideshow').cycle({
		height:  'auto',	// container height 
	    fade:     1,		// true for fade, false for slide 
	    speed:    2000,		// any valid fx speed value 
	    timeout:  10000,		// ms duration for each slide 
	    random:   0,       // true for random, false for sequence 
	    fit:      0,       // force slides to fit container 
	    pause:    0,       // true to enable "pause on hover" 
	    cleartype: 1,	   // true to enable cleartype corrections
		autostop: 0        // true to end slideshow after X slides have been shown (where X == slide count) (note that if random == true not all slides are guaranteed to have been shown) 
	});
	
	// anti spam form validation
	$('input,textarea').keypress(function(){
		this.form.elements.pv.value='verified';
	});
	
	// colorbox pop
	$(".surveyPop").colorbox({width:"90%", height:"90%", iframe:true});

	// png fix for old IE browsers
	$(document).pngFix();
});
