$(document).ready(function(){

        $('#feature-box ul').cycle({
		fx: 'fade',
                speed:    1000,
                timeout:  5000
	});

        $('#nav li').hover(function(){
                $(this).find('ul.sub').slideDown();
        }, function () {
                $(this).find('ul.sub').css('display', 'none');
        });
        
        //pre select value for country dropdowns...
	var country = $('select.countries').attr('title');
	$('select.countries option[value='+country+']').attr('selected', 'selected');

});

