$(document).ready(function(){
	var box,outher_h;
	var box_outher_h=$(".jquery_box_outer").height();
	if($(".price_4") || $("price_extra")){
		outher_h = $(".price_4").height();
	
		var linx = $(document).find(".jquery_title");
		linx.each(function(i){		
			this.href = "javascript:void(0)";
		});

		$(".jquery_box_outer").click(function(){	
		
			box = $(this).find(".jquery_box");
			var ah = $(this).height();
			var oh = $(box).outerHeight()+20;
			$(box).css({"visibility":"visible"});
			if(ah <= box_outher_h){	
				$(this).animate({				
					"height": oh				
				}, 900);		
				
			}
			else{
				$(this).animate({			
					"height": box_outher_h				
				}, 900, function(){$(box).css({"visibility":"hidden"});});

			}
			
		});
	}
});

