  jQuery.noConflict();

  jQuery(function() {
  
	  jQuery(".WLF-CR-popup").css({ display: 'none' });
	  jQuery(".WLF-CR-row").hover(function() {
		  jQuery(this).find('.WLF-CR-popup').stop(true, true).animate({ "height": "show", "opacity": "show" }, 200 );
	  }, function(){
		  jQuery(this).find('.WLF-CR-popup').animate({ "height": "hide", "opacity": "hide" }, 100 );
	  });

	  jQuery(".WLF-CR-row-even").hover(function() {
		  jQuery(this).find('.WLF-CR-popup').stop(true, true).animate({ "height": "show", "opacity": "show" }, 200 );
	  }, function(){
		  jQuery(this).find('.WLF-CR-popup').animate({ "height": "hide", "opacity": "hide" }, 100 );
	  });

	jQuery('#input_2_4').focus(function() {
		if(jQuery('#input_2_4').val() === 'Full Name') {
		jQuery('#input_2_4').val('');
		}
	})
	jQuery('#input_2_5').focus(function() {
		if(jQuery('#input_2_5').val() === 'Phone') {
		jQuery('#input_2_5').val('');
		}
	})
	jQuery('#input_2_2').focus(function() {
		if(jQuery('#input_2_2').val() === 'Email Address') {
		  jQuery('#input_2_2').val('');
		}
	})
	jQuery('#input_2_3').focus(function() {
		if(jQuery('#input_2_3').val() === 'Message') {
		  jQuery('#input_2_3').val('');
		}
	})
	// On focus out
	jQuery('#input_2_4').focusout(function() {
		if(jQuery('#input_2_4').val() === '') {
		jQuery('#input_2_4').val('Full Name');
		}
	})
	jQuery('#input_2_5').focusout(function() {
		if(jQuery('#input_2_5').val() === '') {
		jQuery('#input_2_5').val('Phone');
		}
	})
	jQuery('#input_2_2').focusout(function() {
		if(jQuery('#input_2_2').val() === '') {
		  jQuery('#input_2_2').val('Email Address');
		}
	})
	jQuery('#input_2_3').focusout(function() {
		if(jQuery('#input_2_3').val() === '') {
		  jQuery('#input_2_3').val('Message');
		}
	})


  });
  
jQuery(window).load(function() {
	var lxcRotator2 = 
	{
		init: function()
		{
			var introFadeSide = 1000;
			var slideDurationSide = 5000;
			var fadeDurationSide = 2500;
			var slideCount = jQuery('.wlf-slide').size();
			var currentSlideSide = 0;
			jQuery('.wlf-slide').eq(currentSlideSide).fadeIn(introFadeSide);
			var slideLoop = setInterval(function(){
				jQuery('.wlf-slide').eq(currentSlideSide).fadeOut(fadeDurationSide);
				if(currentSlideSide == slideCount -1){
					currentSlideSide = 0;
				}else{
					currentSlideSide++;
				}
				jQuery('.wlf-slide').eq(currentSlideSide).fadeIn(fadeDurationSide);
			}, slideDurationSide);	
		}	
	};
	jQuery('#wlf-slide-wrapper').animate( { 'height' : 'show' , 'opacity' : 'show'}, 600);
	lxcRotator2.init();
});

