$(document).ready(function() {
	if($('#photo img').length>1){
		$('#photo').addClass('slideshow');
		$('#photo').cycle({
			fx: 'fade',
			timeout: 6000
		});
	}
	if($('.hidden').length>1){
		$('.hidden').hide();
		$('.hidden:last').after('<p class="last"><a href="#" class="readmore" >Read more</a></p>');
	}
	else {
		$('.hidden').before('<p style="clear:both; height:1px; background:#ffffff; margin:0"></p>').after('<p class="last"><a href="#" class="readmore" >Read more</a></p>');
		$('.hidden').hide();
	}
	$('.readmore').click(function(){
		$('.hidden').toggle();
		return false;
	});
	
	$('.readmore1').click(function(){
		$(this).parent('p').prev('.morecontent').toggle();
		return false;
	});
	
	$('#liftsbtn').click(function(){
		return false;
	});
	
	$('#liftsicon').hover(function(){
		$('#liftsbtn').css('backgroundPosition','left top');
		$('#liftsicon div.drawerwrap').stop().animate({
			width: '295px'
		}, 400);
	}, function(){
		$('#liftsbtn').css('backgroundPosition','right top');
		$('#liftsicon div.drawerwrap').stop().animate({
			width: '150px'
		}, 400);
	});
	
	
		$('#scroll_news').vTicker({ 
		speed: 500,
		pause: 3000,
		animation: 'fade',
		mousePause: false,
		showItems: 4
	});
	
	
	
	
});
