/**
 * native.js
 */

var mynative = {
	
	init: function() {
		
		$(".the-carousel").jCarouselLite({
			 btnNext: ".controls-right"
			,btnPrev: ".controls-left"
			,visible: 8
			,circular: false
		});

		/*
		$('a[rel*=magnify]').magnify(
		{
			lensWidth: 280, // width of the lens
			lensHeight: 280, // height of the lens
			link: false, // clicking goes to the large image
			delay: 0 // time before lens is shown
		});
		*/
		
	}
	
};

$(document).ready(mynative.init);