$(document).ready(function() {

	$("input.error").bind("keyup", function() {
		if($(this).val().length) {
			$(this).removeClass("error");
			$(this).bind("blur", function() {
				if(!$(this).val().length) {
					$(this).addClass("error");
				}
			});
		}
	});

	$("#franchise-search-large select").bind("change", function() {
		
		var f_industry = $("#video_industry").val();
		var f_location = $("#video_location").val();
		var f_company  = $("#video_company").val();
		
		var parameters = { 
			"ajax": "1",
			"industry": f_industry,
			"location": f_location,
			"company":  f_company
		};
		
		$.get("/videos.asp", parameters, function(data) {
			if(data.length) {
				$("#franchise-results").slideUp(500, function() {
					$(this).html(data).slideDown(500);
				});
			}
		});

	});

});
