$(document).ready(function()
{	
	//Extra backup om menu te sluiten als er over ander menu gehoverd wordt.
	$('.menu > li .close-backstage').mouseover( function() {
		$('ul.contact').css('visibility', 'hidden');	
	});
	
	$('.menu > li .close-press').mouseover( function() {
		$('ul.contact').css('visibility', 'hidden');	
	});
	
	$("#dealerForm").validate({
		 errorLabelContainer: "#errorLegenda"
	});
	
	$("#submit").click(function() {
		
		var country = $("select[name^='country']").valid();
		
		//Als country gevuld is tonen we de normale kleur
		if( country != 0 )
		{
			$('#select-country').css( 'border', 'none' );
		}
		else
		{
			$('#select-country').css( 'border', '1px solid #bf3108' );
		}
	});
	
	$.validator.messages.required = "";
	
	$('#submit').mouseover(
		function()
		{
			$(this).attr('src', 'images/bt_send-ov_03.gif');
		}
	);
	
	$('#submit').mouseout(
		function()
		{
			$(this).attr('src', 'images/bt_send_03.gif');
		}
	);
});
