$(document).ready(function(){
	// 商城切换
	$('.cardGroupS .cardOption .title').click(function(){
		$(this).parent().siblings().removeClass('selected');
		$(this).parent().addClass('selected');
		$('.cardGroupS .cardOption:last').css('margin-bottom', '-2px');
		// ajax调用
		var res_div =  $(this).parent().children('div'); //ajax返还id
		$.ajax({
			url:$(this).children('a').attr('url'), //处理url地址
			success:function(data){
				res_div.html(data);
				//storesc();
			}
		});		
	});
	$('.cardGroupS .cardOption:first .title').click();

	
	

	// mask
	$('#facebox_close').click(function(){
		$('#index_mask').hide();
		$('#index_facebox').hide();
		//$('#mask').hide();
		//$('#facebox').hide();
	});
	$('#index_mask').show();
	$('#index_facebox').show();
});

function gotoLogin(learnMore)
{
	url = $('#'+learnMore).attr('url');
	if(document.getElementById('no_display').checked)
	{
		document.cookie= "index_no_display=1";
	}
	window.location.href= url;
}

function noDisplay()
{
	if(document.getElementById('no_display').checked)
	{
	    //document.cookie= "index_no_display=1";
		setCookie("index_no_display", "1", oCookieTime(24*30));
		$('#index_mask').hide();
		$('#index_facebox').hide();
	}
}



