function az_popupWindow(url) {
	window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}

jQuery(document).ready(function() {
	var $az_cat_menu_width = 0;
	var $az_cat_menu_left_width = 0;
	
	jQuery("img[src$='images/checkout_bullet.gif']").css('vertical-align', 'bottom');
	jQuery("br:last").css({display: 'none'});
	
	/* az_category_menu*/
	jQuery('#az_category_menu > li').each(function (i) {
		$az_cat_menu_width += jQuery(this).outerWidth()
    });
	jQuery('#az_category_menu_wrapper').width($az_cat_menu_width+'px')

	jQuery('#az_category_menu').az_dropDownMenu({timer: 500, parentMO: 'parent-hover', childMO: 'child-hover'});
	
	/* az_category_menu_left*/
	jQuery('#az_category_menu_left > li').each(function (i) {
		$az_cat_menu_left_width += jQuery(this).outerWidth()
    });
	jQuery('#az_category_menu_wrapper_left').width($az_cat_menu_left_width+'px')

	jQuery('#az_category_menu_left').az_dropDownMenu({timer: 500, parentMO: 'parent-hover', childMO: 'child-hover'});
});
