$(document).ready(function() { 

						   

		/* Highlight */

		var pathname = window.location.pathname;

		pathname = pathname.split("/");

		pathname = pathname[pathname.length-1];

		// IE Sucks

		if(pathname == '') pathname = 'index.html';

		// End IE Sucks

		$("#navigation li a[href*='" + pathname + "']").attr('class', 'active');



		/* Flash Header */

		

		// Pathname control

		

		switch(pathname) {



			case 'incajungle4dias.html':

				pathname = 'santateresa_river_rafting.html';

			break;

			

			case 'rio_urubambatropical.html':

				pathname = 'urubamba_river_1d.html';

			break;

			

			case 'tambopatarafting9dias.html':

				pathname = 'huchuyqosqo.html';

			break;

			

			case '':

			case 'our_guides.html':

			case 'testimonials.html':

			case 'links.html':

			case 'booking_form.php':

			case 'contact-us.php':

			case 'reserve.php':

				pathname = 'index.html';

			break;

		}

		

		$('#swf').flash({

				swf: '/extras/flash/' + pathname + '.swf'

				,width:779

				,height:170

			});

		

		/* Lightbox */

		$('a.lightbox').lightBox();

		

	});