function digerKartlariAc(){
	if($('#otherCard').css('display')=="none")
	{
	$('#otherCard').css('display','block');	
	}else{$('#otherCard').css('display','none');	}
}
function tabAc(id){
if($('#'+id).attr('class').indexOf("tabActive")>-1)
{
}else{
$('.tabActive').attr('class',"tabPage");
$('.tabPage tabActive').attr('class',"tabPage");
	$('#'+id).attr('class',"tabPage tabActive");
	$('.pageContent').fadeOut(50);
	$("#"+id+"Content").fadeIn(500);
}
}