$(document).ready(function ()
{

	/* initialise tabs */
	initTabs();

	$("a[rel=external], form[title=external]").each(function(i){
		this.target="_blank";
	});

	/*
	$("#referentieTypeMarkt, #referentieTypeInstallatie, #referentieOrder").change(function(){
		$("#refSearch").submit();
	});
	*/

	/*
	$(".jquery-selectbox-list span").live('click',function(){
		$("#refSearch").submit();
	});*/


	/*$("select").selectbox({animationSpeed:'fast'});*/


	if ($("ul#refList").length > 0) {

		$("ul#refList li").css('cursor','pointer').click(function(){
			location.href = $(this).find('a').attr('href');
			return false;
		});

	}

	$('#questionInput, #routeInput').bind('focus blur',function(){
		if ($(this).val() == 'Type hier uw zoekopdracht in' || $(this).val() == 'Type hier uw postcode')
			$(this).attr('value','');
		else
			$(this).select();
		return true;
	});
	
	$('ul.related li img').vAlign();

});
