function loadCenter(categID){
	$('#home_advert_photo').hide();
	$('.advertHomeContainer').hide();
	$('#home_advert_container_' + categID).show();
}

function showProduct(identifier, categ){
	$('#home_advert_container_'+ categ + ' .main_center_box').hide();//removeClass('show').addClass('hide');
	$('#product_detail_' + identifier).fadeIn(500);//addClass('show');
	$('.tabs').removeClass('selected');
	$('#product_tab_' + identifier).addClass('selected');
}