$(document).ready(function(){
	// round corners
	$('#footer, #quoteButton, .RoundCorner, .homeBox').corner("10px");
	$('#cart').corner("10px tr br");
	//$('#NavBar').corner("10px tl tr");
	
	// drop down nav
	$('ul#nav li').hover(
		function(){
			if (!$(this).hasClass('page-item-176')) {
				$(this).children('ul').show();
			}
		},
		function(){ $(this).children('ul').hide(); }
	);
	
	// banner slideshow
	$('#banner-slides').cycle({
		height:  '200px',	// container height 
	    fade:     1,		// true for fade, false for slide 
	    speed:    2000,		// any valid fx speed value 
	    timeout:  7000,		// 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" 
	    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) 
	});
	
	// testimonials slideshow
	$('.results-sidebar').cycle({
		height:  '175px',	// container height 
	    fade:     1,		// true for fade, false for slide 
	    speed:    2000,		// any valid fx speed value 
	    timeout:  8000,	// ms duration for each slide 
	    random:   1,       // true for random, false for sequence 
	    fit:      0,       // force slides to fit container 
	    pause:    0,       // true to enable "pause on hover" 
	    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';
	});

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