$(function(){
	
	
	 $('#topNav li:has(ul)').hoverIntent(function(){
			$(this).find('ul').slideDown();
		},function(){
			$(this).find('ul').slideUp();
			});
			
		
	
		$('#homeBlockContainer div:nth-child(2n+2), #bottomFooter > div:nth-child(3)').css('margin-right','0px');
		
		
	
	
		// Underline the home block text on hover
		$('.homeBlock a, .videoBlock a, .tradeBlock a, .squawkBoxBlock a').hover(function(){
				$(this).parent().find('span').css('text-decoration','underline');
			},function(){
				$(this).parent().find('span').css('text-decoration','none');
		});
		
		$('.homeBlock span a, .videoBlock span a, .tradeBlock span a, .squawkBoxBlock span a').hover(function(){
				$(this).css('text-decoration','underline');
			},function(){
				$(this).css('text-decoration','none');
		});
	
	
	// Cover Flows
	
	function CoverFlow() {
		 
			alert('effefeef');

	 }
		
		
	$('#topNav li ul li.page-item-508 a').attr('target', '_blank')		

		
		
	});
	
	 
