 /* in no conflict mode */
jQuery(document).ready(function () {  


/* Lines in price table */
jQuery(".priceTable tr:nth-child(even)").addClass("alt");


/* home page image rotation */
	jQuery('#homeSlides').cycle({ 
		timeout: 4500,
		delay:-2000, 
		speed:  1500,
		random: 1,
		pause: 1,
		fastOnEvent: 1 ,
		startingSlide: 0});



/* code to clear input box of label when clicked in */
jQuery('.default-value').each(function() {
       var default_value = this.value;
       jQuery(this).focus(function(){
               if(this.value == default_value) {
                       this.value = '';
               }
       });

       jQuery(this).blur(function(){
               if(this.value == '') {
                       this.value = default_value;
               }
       });
});

/* colorbox */
jQuery('.colorbox').colorbox({maxWidth:"90%",maxHeight:"90%",title:false});



});

