
var curActiveHeader;
function changeItem( who, targ ) {
	
	if ( curActiveHeader == '2' ) 
	{
		// show dark
		who.src = '/media/headers/'+targ+'_1.jpg';
	 	curActiveHeader = '1';
	} else {
		// show light
		who.src = '/media/headers/'+targ+'_2.jpg';
	 	curActiveHeader = '2';
	}
		
}


// get the places with Ajax
function getSelectCountry( item, target )
{	
	$.ajax({
		url	: '/ajax/getPlaces.php',
		data: "id="+$("#"+item).val()+"&curVal="+$("#"+target).val(),
 		type: "post",
		success: function( data ) {
			// alert(data);
			$( '#'+target ).html(data);
		},
		error: function( event, request ) {
  			alert("Uw vraag kon niet uitgevoerd worden");
		}
	});
}
