﻿// JScript File

(function($j){

	FeaturedProducts = {
	
		_carousel: function(){
			if($j('#ImageGallery').size()){
				$j('#ImageGallery').css({'position':'absolute'});
				$j('#ImageGallery').jcarousel();
			}
		},
		
		onReady: function(){
		
			var self = this;
			self._carousel();
			
		}
		
		
		
	};

	$j().ready(function(){
		FeaturedProducts.onReady();
	});


})(jQuery);	