// JavaScript Document
(function($) {
	

	$(document).ready(function(){
		
		$(function(){
			var slideHeight = 275; // px
			var defHeight = $('#offer').height();
			if(defHeight >= slideHeight){
				$('#offer').css('height' , slideHeight + 'px');
				$('#offer').css('overflow','hidden');
				$('#more').append('<a href="#">More</a>');
				$('#more a').click(function(){
					var curHeight = $('#offer').height();
					if(curHeight == slideHeight){
						$('#offer').animate({
						  height: defHeight
						}, "normal");
						$('#more a').html('Close');
						$('#gradient').fadeOut();
					}else{
						$('#offer').animate({
						  height: slideHeight
						}, "normal");
						$('#more a').html('More');
						$('#gradient').fadeIn();
					}
					return false;
				});
			}
		});
	
	});
	
	
})( jQuery );
