// JavaScript Document
$(function(){
	function jscroll(){
		var settings = {
			showArrows:true, 
			scrollbarWidth:13,
			scrollbarMargin:15,
			reinitialiseOnImageLoad:true
		};
		$('#scroll').jScrollPane(settings);
	}
	$('#scroll').length?jscroll():'';
	
	
	function carousel(){
		$('#jcarousel').jcarousel({
			scroll: 1
        	
		});
		$('#jcarousel a').each(function(){
			tb_init($(this))
			
		})
		
	}
	$('#jcarousel').length?carousel():'';
	
	
	$(' ul.t-bar li, ul.t-bar td').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
		
	
	})
	
	$('ul.t-bar,ul.t-bar table.spec').hover(function(){
		$(this).addClass('bar-hover');	
	},function(){
		$(this).removeClass('bar-hover');
	
	})
	
});

$(function() {
	$('a.lightbox').lightBox();
});
