/**
* Standaard functies/acties	
**/
function showPopUp(sContent, iWidth, iHeight){
	if($('#popUp').html()!==null){
		
	}
	iPadding = 20;
	iWidth = (iWidth-(2*iPadding));
	iHeight = (iHeight-(2*iPadding));
	sPosition = '-'+(iHeight/2)+'px 0px 0px -'+(iWidth/2)+'px';
	var sSluitknop = '<div id="closePopUp"></div>';
	var sDiv = '<div id="darkLayer"></div><div id="popUp" style="display: none;">'+sSluitknop+' <div id="popUpCanvas">'+sContent+'</div></div>';
	$('body').append(sDiv);
	$('#popUp').css('margin',sPosition);
	$('#popUp').css('padding',iPadding);
	$('#popUp').css('width',iWidth);
	$('#popUp').css('height',iHeight);
	$('#darkLayer').fadeTo('fast',0.8,function(){
		$('#popUp').show('fast');
	});
}

$(document).ready(function(){
	$('#contact').validate();
	
	/**
	* Pupup stuff
	**/
	$('#closePopUp').live('click',function(){
		$('#popUp').fadeOut('fast',function(){
			$('#popUp').remove();
			$('#darkLayer').fadeOut('fast',function(){
				$('#darkLayer').remove();
			});
		})		
	});

	/**
	* Dealers
	**/
	$('.dealer img').click(function(){
		var sContent = $(this).parent().html();
		showPopUp(sContent,500,300);
		/*$('#portfolioCanvas').html(sContent);*/
	});	
});
