jQuery.noConflict()
jQuery(document).ready(function() {
isOpen=false;

jQuery("#topcorner").mouseenter(function(event) {

	isSmallOpening = true;
	if (!isOpen) {
		jQuery("#ecke_img").animate( {
			width : 200
		}, 400, 'easeInOutCubic', function() {

			isSmallOpening = false;
		});
	}
});
jQuery("#topcorner").mouseleave(function(event) {

	if (!isOpen && !isSmallOpening) {
		jQuery("#ecke_img").animate( {
			width : 150
		}, 400, 'easeInOutCubic', function() {

		});
	}
});
/*
starthohe=142;
jQuery(".start_produkte").css('height',starthohe+'px');
jQuery('#productsshowall').toggle(function(event){
	rows = (jQuery(".start_produkte ul li").size())/4;
	kastenhohe=starthohe+(jQuery(".start_produkte ul li").height()*(rows-1));
	jQuery(".start_produkte").animate( {
		height : kastenhohe
	}, 400, 'easeInOutCubic', function() {
		jQuery('#productsshowall').text('Ausblenden');
		return false;
	})
},function(){
	jQuery(".start_produkte").animate( {
		height : starthohe
	}, 400, 'easeInOutCubic', function() {
		jQuery('#productsshowall').text('Alle Produkte einblenden');
		return false;
	})
})
*/

});
