$(function(){

	// setup player with "internal" playlist
	$f("player", "/flash/flowplayer3/flowplayer-3.2.4.swf", {
		clip: { baseUrl: '/files/', scaling: 'orig' },

		plugins: {
			controls: {
				playlist: true
			}
		}

	// use playlist plugin. again loop is true
	}).playlist("#playlist", {loop:true});

	//client side validation of lead form
	$("#LeadAddForm").validate({

	   groups: {
	   	contactmethod: "data[Lead][phone] data[Lead][email]"
	   },

	   rules: {
	     'data[Lead][firstname]': {
	       required: true
	     }
	   },

		wrapper: "span",

		errorLabelContainer: $("#LeadAddForm div.error"),

		submitHandler: function(form) {
				jQuery(form).ajaxSubmit({
				target: 'div.leadform',
				success: function(){
					scrollerload()
				}
			});
		}
	});

	$("img.verify").click(function(){
		//check if form exists, if so tell user to submit
		  if ($('#LeadAddForm').length) { // implies *not* zero
			alert('Thank you for your interest in Fuel Direct and Xp3!  To continue please take a moment to fill out the contact form so we may have a record of your visit.  We respect your privacy so you can be assured that we will never share, rent, lease, or sell your personal information to any third party for their independent use or benefit.');
			return false;
		  } else {
		    return true;
		  }
	});
});

