﻿function stripTags(originalText) {
    var text = originalText.replace(/(<[^<>]*>)/g, "");
    text = text.replace(/\n/g, "");
	return text;
}


$(document).ready(function() {	
	
	$('#main-nav').hoverIntent(function(){				
		$(this).css('height', '56px');				
		$(this).css('margin-top', '160px');				
		$('#main-nav a').css('height', '55px');				
		$('#activearrow').addClass('ho');			
		}, 
		function(){				
		$(this).css('height', '38px');				
		$(this).css('margin-top', '177px');				
		$('#main-nav a').css('height', '38px');				
		$('#activearrow').removeClass('ho');			
	} );

	
		
});


