$(document).ready(function () {
function HPmodulesFix(){
	if ($(window).width() >= 1200){
    $('.hm_new').css('width', '32%');
		$('.hm_popular_1').css('width', '32%');
		$('.hm_popular_2').css('width', '32%').show();
	}
	else {
			$('.hm_popular_2').hide();
			$('.hm_new').css('width', '48%');
			$('.hm_popular_1').css('width', '48%');
	}
}

HPmodulesFix();
$(window).resize(function(){
	HPmodulesFix();
});

$('.add2cart').live('click', function(event){
	event.preventDefault();
	$.get($(this).attr('href'));
	$('#overlay-wrapper').fadeIn(200);
	$('#overlay').css({
										'margin-top':-$('#overlay').outerHeight()/2, 
										'margin-left':-$('#overlay').outerWidth()/2
	});
});

$('.subcat-current').parent('ul').show();

	$('.catalog_expand_tree').click(function(){
		if($(this).parent('li').hasClass('cat-current')){
			$(this).parent('li').removeClass('cat-current').children('ul').slideUp(400);
		} else {
			$(this).parent('li').addClass('cat-current').children('ul').slideDown(400);
		}
	});
}); 
