﻿/* set height */
$(document).ready(function() {
    $('.logos_slider').cycle();
	/*$("#inner_content").addClass("reduce");
	$("#read_more").click(function(){
			$("#inner_content").animate({height:800px}, 1000);
		});
		*/
		
		var slideHeight = 325; // px
	var defHeight = $('#inner_content').height();
	if(defHeight >= slideHeight){
		$('#inner_content').css('height' , slideHeight + 'px');
		$('#read_more').text('Read more »');
		$('#read_more').click(function(){
			var curHeight = $('#inner_content').height();
			if(curHeight == slideHeight){
				$('#inner_content').animate({
				  height: defHeight
				}, "normal");
				$('#read_more').fadeOut();
			}else{
				$('#inner_content').animate({
				  height: slideHeight
				}, "normal");
				$('#read_more').text('Click to Read More');
			}
			return false;
		});
	}
	
});
