$(function(){
		base_url = "<?=base_url()?>index.php/";
		$wrapper 	= $('#thumbsWrapper');
		$container = $("#thumbsContainer");
		contPadding = 15;
		//Get menu width
        var divWidth = $wrapper.width();

        //Remove scrollbars
        $wrapper.css({
            overflow: 'hidden'
        });

        //Find last image container
        var lastLi = $container.find('a:last-child');
        $wrapper.scrollLeft(0);
        //When user move mouse over menu
        $wrapper.unbind('mousemove').bind('mousemove',function(e){

            //As images are loaded ul width increases,
            //so we recalculate it each time
            var ulWidth = lastLi[0].offsetLeft + lastLi.outerWidth() + contPadding;

            var left = (e.pageX - $wrapper.offset().left) * (ulWidth-divWidth) / divWidth;
            $wrapper.scrollLeft(left);
        });
	//Gallery Fancy Box
	$("a.fancy").attr('rel', 'gallery').fancybox({
		transitionIn: "elastic",
		padding:0,
		titlePosition: 'over'
	});
});
