$(document).ready(function() {
	
	// home page slider
	$("#s3slider").s3Slider({
		timeOut: 4000
		});
		
	// country drop down	
	var tmp = null;
	$('.selected_box').click(function() {
		$('.drop_list').fadeIn('slow');
	});
	$('.drop_list').hover(function() {}, function() {
		$('.drop_list').fadeOut('normal');
	});					   
});