jQuery(document).ready(function($){


	$('DIV.box').mouseenter(function(){
		$(this).find('UL').show();
		$(this).find('P').hide();
		$(this).css({
			'background' : '#ededed'
		})
	});

	$('DIV.box').mouseleave(function(){
		$(this).find('UL').hide();
		$(this).find('P').show();		
		$(this).css({
			'background' : '#dbdbdb'
		})
	});
	
	if (!$('#mainContainer').length) {
	
		// This is for the portal pages, but need to block it from running on Facebook pages.
	
		$('A[href^="http"]').each(function(){
			$(this).attr('target', '_blank');	
		});
	
	}
	
	//     $('#carousel').jcarousel({
	// 	scroll : 1
	// });
	// $('#carousel').css({'left':'84px'})



})

