(function($){
$(document).ready(function(){
// ابتدا فقط بخش داخلی دیده شود
$('.local-content').show();
$('.international-content').hide();
// هندل سوییچ
$('#toggleContent').on('change', function(){
if(this.checked){
$('.local-content').fadeOut(200, function(){
$('.international-content').fadeIn(300);
});
} else {
$('.international-content').fadeOut(200, function(){
$('.local-content').fadeIn(300);
});
}
});
});
})(jQuery);