// JavaScript Document

$(document).ready(function(){
	
	$('.sf-menu').superfish();
	
	$('a[href="#"]').click(function(event){
		event.preventDefault();
		});
	
	$('img.arrow').hover(
	function(){
		$(this).attr('src','img/greenArrow.jpg');
		},
	function(){
		$(this).attr('src','img/grayArrow.jpg');
		}
	);
	
	
	$('.more').click(function(e){
		e.preventDefault();
		
		$(this).next().toggleClass('hide');
		if($(this).text() == 'Read More.'){
		$(this).text('Read Less.');
		}else{
			$(this).text('Read More.');
			}
		});
	
	});
