$(document).ready(function(){
	
	$(".dropdown").mousedown(function(){
		if($.browser.msie) {
			$(this).css("width","330px");
		}
	});
	$(".dropdown").change(function(){
		if ($.browser.msie) {
			$(this).css("width","248px");
		}
	});
	$(".dropdown").blur(function(){
		if ($.browser.msie) {
			$(this).css("width","248px");
		}
	});
	
	
	
	$("#generalform").validate({
		rules: { 
			generalinquiryname: "required", 
			generalinquiryemail: { 
				required: true, 
				email: true 
			}, 
			comments: "required",
			generalinquiryabout: "required"
		}, 
		messages: { 
			generalinquiryname: "Enter your full name", 
			generalinquiryemail: { 
				required: "Enter your email address", 
				email: "Enter your email address"
			}, 
			comments: "Please enter a message",
			generalinquiryabout: "Please select an option"
			
		},
		submitHandler:function(form) {
			jQuery(form).ajaxSubmit(options);
		}		
	});

	
	var options = { 
		target: '#output'
	}
	$('.obfuscate').nospam({ filterLevel: 'low' });
});
