// JavaScript Document

 var J = jQuery.noConflict();
 

 J(document).ready(function(){
   J('#col3_content').css('overflow' , 'hidden');
	 
   J('#col3_content').mouseenter(function(){
	 J(this).stop().animate({ height: "80%"}, "slow");	
	 J('#col3_content h1').css('background-image' , 'url(../fileadmin/styles/wernergroebl/img/icons/verkleinern.png)');
   })
 
   J('#col3_content').mouseleave(function(){
	 J(this).stop().animate({ height: "70"}, "slow");
	 J('#col3_content h1').css('background-image' , 'url(../fileadmin/styles/wernergroebl/img/icons/vergroeszern.png)');
   });

   
   J('#col3_content h1').click(function(){
	 J('#col3_content').animate({ height: "70"}, "slow");	
	 J(this).css('background-image' , 'url(../fileadmin/styles/wernergroebl/img/icons/vergroeszern.png)');
   })  
   
 });
