$(document).ready(function(){
						   
		$('#images').cycle();					   
	
	var fullheight;
	$('#showhide').click(function(){
		
		var current = $(this).html();

		if (current == "showtext") {
			$('#content').animate({
				height: fullheight,
				paddingTop: 50,
				paddingBottom: 50
			});
			
			$(this).html("hidetext").css({"background-position" : "left top"});

			
		} else {
			fullheight = $('#content').height();
			$('#content').animate({
				height: 0,
				paddingTop: 0,
				paddingBottom: 0
			});
			
			$(this).html("showtext").css({"background-position" : "left bottom"});
		}
		return false;
	});
	
	
	$('#other ul li a').hover(function(){
		thisheight = $(this).height();
		thisheightover = thisheight + 30;
		$(this).animate({
			height: thisheightover				
		},{queue:false, duration:200});
	}, function () {
		$(this).animate({
			height: thisheight
		},{queue:false, duration:200});
	});
	

	
});