(function($) {
$(function() {
var step='80px';
	$('ul.tabs').delegate('li:not(.current)', 'hover', function() {
		$(this).addClass('current').siblings().removeClass('current')
			.parents('div.section').find('div.box').hide().eq($(this).index()).fadeIn(150);
	})
$("#pov-next").mouseover(function(){if($(".box").css('margin-left')!='0px'){$("#pov-next").css('background-position','0 -15px')}})
$("#pov-next").mouseout(function(){$("#pov-next").css('background-position','0 -30px')})
$("#pov-prev").mouseover(function(){if($(".box").css('margin-left')!=step){$("#pov-prev").css('background-position','-15px -15px')}})
$("#pov-prev").mouseout(function(){$("#pov-prev").css('background-position','-15px -30px')})
$("#pov-prev").click(function(){$("#sc").css('margin-left','-'+step); $(".box").css('margin-left',step)})
$("#pov-next").click(function(){$("#sc").css('margin-left','0px');$(".box").css('margin-left','0px')})
})
})(jQuery)
