$(document).ready(function(){
		$(".img-box").jCarouselLite({
				btnNext: ".next",
				btnPrev: ".prev",
				auto: 4500,
				speed: 800,
				visible: 1,
				scroll: 1,
				easing: 'easeout',
				btnGo:
				[".thumbs .1", ".thumbs .2",
				".thumbs .3", ".thumbs .4",
				".thumbs .5"]
		});
		
		if($.browser.msie){
			$('.wide').hover( 
										 function() { $(this).addClass('expand').removeClass('clicked'); },
										 function() { if (!$(this).hasClass('clicked')) { $(this).removeClass('expand'); }}
										);
			$('.wide').click( function() { $(this).toggleClass('clicked'); });
			$('.wide').change( function() { $(this).removeClass('expand clicked'); });
			$('.wide').blur( function() { $(this).removeClass('expand clicked'); });
		}
		
});
