/**
 * Copyright 2010 Sequoia Technologies IMS, LLC 
 * Pleasant Hill, CA USA. All rights reserved.
 *
 * This software is furnished under a license  and may be  used and  copied
 * only in  accordance of the  terms of such license and with the inclusion
 * of the above copyright note.   This software or any other copies thereof
 * may not be provided or otherwise made available to any other person.  No
 * title to and ownership of the software is hereby transferred.
 *
 * The information in this software is subject to change without notice and
 * should not be construed as a commitment by Sequoia Technologies IMS, LLC.
 *
 * $Id$
 */
jQuery(document).ready(function() {
    jQuery('#slideshow').cycle();
});

// INLINED LABELS
// jQuery(document).ready(function(){
// 	jQuery("label.inlined + .input-text").each(function (type) {
//      	jQuery(this).focus(function () {
//       		jQuery(this).prev("label.inlined").addClass("focus");
//      	});
//      	jQuery(this).keypress(function () {
//       		jQuery(this).prev("label.inlined").addClass("has-text").removeClass("focus");
//      	});
//      	jQuery(this).blur(function () {
//       		if(jQuery(this).val() == "") {
//       			jQuery(this).prev("label.inlined").removeClass("has-text").removeClass("focus");
//       		}
//      	});
//     });
// });


// FORM VALIDATION
// jQuery("#ChronoContact_contact").validate({
// 	errorClass: "invalid",
// 	validClass: "success",
// 	rules: {
// 		name: {
// 			required: true
// 		},
// 
// 		email: {
// 			required: true,
// 			email: true
// 		},
// 
// 		phone:{
// 			required: true,
// 			digits: true
// 		},
// 
// 		message: {
// 			required:true
// 		}
// 
// 	},
// 	messages: {
// 		name: {
// 			required:"Enter your Name"
// 		},
// 
// 		email: {
// 			required: "Please enter a valid email address",
// 			minlength: "Please enter a valid email address"
// 		},
// 		phone: {
// 			required:"Enter your Phone",
// 			digits:"Enter only numbers"
// 		},
// 		message:{
// 			required: "Don't send blank messages!"
// 		}
// 
// 	},
// });













