$(window).addEvent('domready', function(){ initCategories(); } );

function initCategories(){
	initImageHighlightInCategory();
	//initCategoryContent();
}

function initImageHighlightInCategory(){
	if($('highlightImage') && $('productInHighlightContent')){
		$('productInHighlightContent').style.left = ($('productInHighlightImage').offsetWidth - ($('highlightImage').offsetWidth/2)) + 'px';
		$('productInHighlightContent').style.top = -($('productInHighlightImage').offsetHeight/4 + ($('highlightImage').offsetHeight/2)) + 'px';
	}
}

function initCategoryContent(){
	if($('categoryContent')){
			initFormFields('formItemsNumber');
	}
}
