var AM = {};

function klasa(id,klasa) {
	$("#"+id).className = klasa;
}
function pokaz_oferte(){
	$("#oferta_footerm").css({ 
		display: 'block'
	} );
}

$(document).ready(function(){
    $("#slide").bind("mouseenter",function(){
		AM.b = window.setTimeout( function(){
	   	$('#slide').animate({ 
			height: '242px'
	    }, 700 );
		}, 300 );
    }).bind("mouseleave",function(){
	if( AM.b ) {
		window.clearTimeout( AM.b );
	}
		$('#slide').animate({ 
			height: '29px'
		}, 300 );
    }); 
});
