﻿(function($j){

	

	CarDetails = {
		
		_initGallery:function(){
			
			//Initialise the scroller
			$j("ul#GalleryThumbnails").jcarousel({
				vertical: true,
				scroll: 2
			});
			
			//Now setup the images
			$j("a.vehicle-picure", "ul#GalleryThumbnails").click(function(){
				
				var link = this;
				var vehiclePictureId = Core.stripValue($j(link).attr("class"), "vehicle-picture-", " ");
				
				
				$j("img", "div#MainImageContainer").fadeOut();
				$j("img.vehicle-picture-"+ vehiclePictureId, "div#MainImageContainer").fadeIn();

				
				return false;
								
			});
			
			
		},
		
		onReady: function(){
			var self = this;
			self._initGallery();
			
		}
		
		
		
	};

	$j().ready(function(){
		CarDetails.onReady();
	});


})(jQuery);	



