/*******************************************************************************
Start : $Revision: $ $Workfile: $
$History: $ 
*******************************************************************************/

function init_Vehicle_Popup() {

	// Bind Modal opening code to 'open-vehicles' anchor (change as appropriate)
	$('a#open-vehicles').click(function (e) {
		e.preventDefault();
		$('#modal-vehicle').modal({
			opacity:70,
			overlayClose:true,
			persist:true,
			onOpen: function (dialog) {
				dialog.overlay.fadeIn(100); // Show blanker
				dialog.container.fadeIn(200, function () { // show modal at same time
					dialog.data.fadeIn(100); // Show modal content when container has faded in
				});
				$('.simplemodal-wrap').css('overflow','hidden'); // Stop scrolling
			}
		});
	});

	// Enable Popup Navigation List
	$('div.vehicle-nav ul a').each(function() {
		var myVehicle = $(this).attr('id');
		$(this).mouseover(function() {
			$('div.vehicle-lineup').hide();
			$('#lineup-'+myVehicle).show();
			$('div.vehicle-nav ul a').removeClass('selected');
			$(this).addClass('selected');
			return false;
		});
	});
	$('div.vehicle-nav ul a:first').addClass('selected');
	$('div.vehicle-lineup-container div:first').show();
	$('#vehicle-close').click(function() { $.modal.close();return false; });

}

