$(document).ready(function()
{	
	//Extra backup om menu te sluiten als er over ander menu gehoverd wordt.
	$('.menu > li .close-backstage').mouseover( function() {
		$('ul.presspack').css('visibility', 'hidden');	
	});
	
	$('.menu > li .close-contact').mouseover( function() {
		$('ul.presspack').css('visibility', 'hidden');	
	});
	
	// Validate
	$("#pressrequestForm").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');
		}
	);
});

//Menu functie weer aanroepen zodat het gebruikt kan blijven worden.
$('.menu > li').bind('mouseover', jsddm_open);
//$('.menubutton').bind('click', jsddm_open);
$('.menu > li').bind('mouseout',  jsddm_timer);
