
		$(document).ready(function() {
			$('input[type="text"]').addClass("inputField");
       		$('input[type="text"]').focus(function() {
       			$(this).removeClass("inputField").addClass("focusField");
    		    if (this.value == this.defaultValue){ 
    		    	this.value = '';
				}
				if(this.value != this.defaultValue){
	    			this.select();
	    		}
    		});
    		$('input[type="text"]').blur(function() {
    			$(this).removeClass("focusField").addClass("inputField");
    		    if ($.trim(this.value) == ''){
			    	this.value = (this.defaultValue ? this.defaultValue : '');
				}
    		});
		});			

	/*Carrocel*/		
      $(document).ready(function () {
        
        $("#waterwheel-carousel-horizon").waterwheelCarousel({
            startingWaveSeparation: 0,
            centerOffset: 30,
            startingItemSeparation: 50,
            itemSeparationFactor: .7,
            itemDecreaseFactor: .65,
			opacityDecreaseFactor: .5,			
            autoPlay: 6000,
            edgeReaction: 'reverse'			
        });

      });
	
	
	

      $(document).ready(function(){
        $("#contact").click(function(){
          $("#contactInfo").slideToggle("slow");
        });
      });

