$(document).ready(function(){
	$('div.news_article p:first-of-type').addClass('intro');
	$('.forum .padding > p:first-of-type').addClass('intro');
	
	$('ul#nav li ul li ul').parent('li').addClass('hasSubmenu');
	$('div.article img').attr('width', '400').removeAttr('height');
	//Navigation hover effects
	$('ul#nav li').hover(function(){
		$(this).children('ul').addClass('openSubmenu');
		$(this).children('a').addClass('hover');
	}, function(){
		$(this).children('ul').removeClass('openSubmenu');
		$(this).children('a').removeClass('hover');
	});
	$('ul#sponsor_list').innerfade({
		animationtype: 'fade',
		speed: 'normal',
		timeout: 5000,
		type: 'random',
		containerheight: '135px',
		runningclass: 'innerfade'
	});
 });