jQuery.noConflict();
jQuery(document).ready(function($) {
$(document).ready(function(){
//JQuery ready is quicker than onload
$(".contenttable tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
$(".contenttable tr:nth-child(odd)").addClass("alt");
});
});
(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery)


// execute your scripts when the DOM is ready. this is a good habit 
$(function() { 
 
    // initialize scrollable 
    /*$("div.scrollable").scrollable({
		size: 6,
	});*/
	$("#infinite").scrollable({
		size: 6
	}).circular();	

 });


	$(function() { 
 
   	 	$("div.scrollable").scrollable({
			vertical: false,	
			//mousewheel: true,
			size: 3
		});
 
	}); 



