/**
 * @author Greg
 */


var Navigation = {
		
		init: function(){
			$("a[rel=lightbox],a[rel=colorbox]").colorbox();
			$('section.news ul.list').jcarousel({
			    //auto:3,
			    wrap: 'both',
			    scroll:1,
			    easing:"easeOutSine"
			});
			$('#catalogIndex').jcarousel({
			    auto:4,
			    wrap: 'both',
			    scroll:1,
			    easing:"easeOutSine",
			    animation:"slow"
			});
			
			$('.scrollable').jScrollPane();
		}
};

$(document).ready(function(){
	
	Navigation.init();

  if ( $.browser.msie ) 
  {
      $('div#header ul.navigation>li:first-child').hover(function(e){$(this).addClass('hover');},function(e){$(this).removeClass('hover');});
  }

});
