document.observe("dom:loaded", function() 
{ 
//	var products = $$('.product-image');
//	
//	products.each(function(item)
//	{
//		item.observe('mouseenter' , function ()
//		{
//				alert('hey');
//		});
//	
//	});
	
	if($('uber-category-image') == null | $('category-description') == null)
	{
		return;
	}
	else
	{
		var catImage	=	$('uber-category-image'),
			catPanel	=	$('category-description'),
			page_url 	=	window.location.toString(),
			url_split	=	page_url.split("p=");
		
		if(url_split[1] >= 2)
		{
			catImage.setStyle({'display':'none'});
			catPanel.setStyle({'display':'none'});
		}
		
		if (catPanel.getHeight() > catImage.getHeight())
		{
			catPanel.setStyle({'display':'none'})
		}
		else
		{
			var heightOffset = -catPanel.getHeight()+"px";
			
			catPanel.setStyle(
			{
				'marginTop':heightOffset,
				'z-index':'1000',
				'position':'absolute'
			});
		}
		
	}
});