var disqus_developer = 1

$(document).ready(function () {
	
$.extend($.fn.disableTextSelect = function() {
	return this.each(function(){
		if($.browser.mozilla){//Firefox
			$(this).css('MozUserSelect','none');
		}else if($.browser.msie){//IE
			$(this).bind('selectstart',function(){return false;});
		}else{//Opera, etc.
			$(this).mousedown(function(){return false;});
		}
	});
});
$('.jcarousel-next,.jcarousel-prev').disableTextSelect();//No text selection on elements with a class of 'noSelect'

  if($('.carousel-container').length){
	  $('.carousel-container').jCarouselLite({
        btnNext: ".jcarousel-next",
        btnPrev: ".jcarousel-prev",
		circular: true,
		visible: 4,
		auto: 10000
    });
  }
});
