
  jQuery(function($){
		    $('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
		    $('#news_content_div').cycle({
	    fx:     'turnDown', 
    speed:  'fast',
    pause:   1, 
    timeout: 6000
    });
	

	
	
				
		$('.country_name_div').bind('click', function() {
			
		var cId		=  $(this).attr('Id');
		
		$.ajax({
			  url: 'index-ajhandle.php?action=1&contId='+cId,
			  success: function(data) {
			    $('#content_body_div').html(data);
			    
			  }
		});	
			
		}      );
		


	});
