/**
 * ModaElinizde All Pages jQuery Applications
 * @corparation Bilginet
 * @author KeremCIU <kerem@ritmix.org>
 * @authorWebSite <http://www.keremciu.com>
 * @date 25.08.2010 / 10:18
 */
$(function () {

	display_timeout = 0;
	if(!$.browser.msie){$('.mainContent').addClass('clearfix');}
	
	$(".menu li").each(function() {
	popup_elements = $(this).find('.menuPopup .wider').find('li').size();
	popup_static_numberC = popup_elements / 8;
	popup_static_number = Math.ceil(popup_static_numberC);
	popup_width = parseInt(popup_static_number * 156);
		if (popup_elements == 0) {
			$(this).find(".menuPopup").hide();
		} else {
			$(this).find('.menuPopup').css('width',popup_width);
			$(this).find('.menuPopup ul').css('width',popup_width);
		}
	});
	
	$('.menu li.topParent').hover(function () {
		$('.menuPopup', this).show();  
    }, function () {
		$('.menuPopup', this).hide();
	});  
	
    $('.menu li:not(".menuCaption"), .rightAdsenseSpaceMap, .productTemplateImageBg, .leftContentNavigation li').hover(function() {
		$(this).addClass('onhovered');
	}, function() {
		$(this).removeClass('onhovered');
	});
});
