if(typeof(stopboxes) == 'undefined'){
	jQuery.noConflict();
	(function($) {
		$(document).ready(function($) {
			$('#floats').css("padding-bottom","35px");
			$('.boxouter').css("height","25px");
			$('.boxouter').hover(function(){
				if(parseInt($(this).css("height"))==25){
					$(this).animate({
    					height:"170"
  						}, 500
  					);
  				}
			},function(){
				if(parseInt($(this).css("height"))>25){
					$(this).animate({
    					height:"25"
  						}, 500
  					);
  				}
			});
		});
	})(jQuery);
}
