jQuery.noConflict();
(function($) {		  
	jQuery(document).ready(function() 
	{				
		$("#header_rollover .col").hover(
		  function () {
		    $(this).stop().animate({
			    height: '279px'
			  }, 300, 'linear');
		  },
		  function () {
		   $(this).stop().animate({
			    height: '33px'
			  }, 100, 'linear');
		  }
		);
	});
})(jQuery);	
