$(document).ready(function()
{
	$('.content-top').cycle({fx:'fade',speed:2000,timeout:5000,prev:'.slidePrev',next:'.slideNext',pager:'.blt'});
	$('.coming_soon').cycle({fx:'scrollLeft',speed:500,timeout:3000,prev:'.ComingSoonPrev',next:'.ComingSoonNext'});
	$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
	
	$('.newsletter').click( function() {
        
		$('#close2').show();
		$('#news').show();
        return false;
    });
	
	$('#close2').click( function() {
        
		$('#close2').hide();
		$('#news').hide();
        return false;
    });
	
	
	
	$('.navcontainer li').hover( function() 
	{
		$(this).find('ul').slideToggle();
    }
	, function()
	{
		$(this).find('ul').hide();
	});
});