$(document).ready(function(){
	$('#slide-container').cycle({
		height:  '224px',	// container height 
	    fade:     1,		// true for fade, false for slide 
	    speed:    'slow',	// any valid fx speed value 
	    timeout:  4000,		// ms duration for each slide 
	    random:   0,       // true for random, false for sequence 
	    fit:      0,       // force slides to fit container 
	    pause:    1,       // 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) 
	});
	// Standard Round Corners
	$('.round').corner("10px");
	
	// Use top, bottom, tl, tr, bl, br to identify which corner to style
	$('.round2').corner("20px tl br");
	$('input,textarea').keypress(function(){
	 			this.form.elements.pv.value='verified';
 		});
});