$(document).ready( function(){
		
		$('.lofslider-play').click(function() {
			if (!$(this).hasClass('current')) {
				$(this).hide();
				$(this).addClass('current');
				
				$('.lofslider-pause').removeClass('current').show();				
			} 
		});
		
		$obj = $('.lof-page').lofJSidernews( { interval : 4000,
												direction				: 'opacitys',	
											 	easing					: 'easeInOutExpo',
												duration				: 1200,
												auto		 			: true,
												maxItemDisplay  		: 10,
												navPosition     		: 'horizontal', // horizontal
												navigatorHeight 		: 15,
												navigatorWidth  		: 10,
												navigatorItemsMargin	: 20,
												hasNavigation			: false,
												turnAutoOffOnClick		: true,
												mainWidth		 		: 910} );
												
												
});
