$(document).ready(function() {

	// Last child
	$('.selector li:last-child').addClass('lastChild');

	// First child
	$('.selector li:first-child').addClass('firstChild');

	// Fix the a/img problem
	$(".content img").each(function() {
		var parentTag = $(this).parent().get(0).tagName;
		if (parentTag == 'A') {
			$(this).parent().addClass('linkedImage');
		};
	});

	//  Travel form
	$(document).ready(function(){
		$('a#fakeSubmit').click(function(e){
			e.cancelBubble = true;
			e.returnValue = false;
			if (e.stopPropagation) {
				e.stopPropagation();
				e.preventDefault();
			}
			var link = 'http://www.worldticketcenter.nl/trade/?tt=505_0_19954_&r=%2Ftwo%2Fasp%2Fproces-bx.asp%3Fwtc_fc%3D2%26des_apname%3D[VARIABLE1]%26dep2_apname%3D[VARIABLE1]%26dep_apname%3D[VARIABLE2]%26des2_apname%3D[VARIABLE2]';
			window.location.href = link.replace(/\[VARIABLE1\]/g, $('#ticketDestination').val()).replace(/\[VARIABLE2\]/g, $('#ticketDeparture').val());
		});
	});

	// Break frame
	if (top.location != self.location) top.location.replace(self.location);

});