

$(document).ready(function() {
    $('.headerslideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed:  2500
	});
	 $('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed:  2500
	});
    $('#menu li').each(
			function(){
			    $(this).bind('mouseenter ', function() {
				    $(this).find('div').addClass('active');

			    });
			});

    $('#menu li').each(
			function(){
			    $(this).bind('mouseleave ', function() {
	                $(this).find('div').removeClass('active');
			    
			    });
			});
			
	$('#flags a img').each(
			function(){
			    $(this).bind('mouseenter ', function() 
			    {
	                $(this).animate({"opacity": "1"}, "fast");
			    
			    }).bind('mouseleave ', function() 
			    {
			        if(!$(this).hasClass('active'))
			        {
	                    $(this).animate({"opacity": "0"}, "fast");
	                }
			    
			    });
			});
			
	//round corners where needed
	$('#footer').corner();
	$('#header-right-image-container').corner("br").corner("tr");
	$('.main-menu li').corner();
	
	

});
