$(function(){
	//nav hovers
	$('#nav a img').each(function(){
		$(this).hover(function(){
			//mouse over
			var url = $(this).attr('src');
			$(this).attr('src',url.replace(".gif","Roll.gif"));
		},
		function(){
			//mouse out
			var url = $(this).attr('src');
			$(this).attr('src',url.replace("Roll.gif",".gif"));
		});
		$(this).click(function(){
			var url = $(this).attr('src');
			$(this).attr('src',url.replace("Roll.gif",".gif"));			
		});
	});
	
	//dropdown
	$('#subnav').hover(function(){
		//mouse over
		$('#dropdown').slideDown(200);
	},
	function(){
		//mouse out
		$('#dropdown').slideUp(200);
	});
	$('#subnav').click(function(){
					
	});
	
	//logo hover
	$('#header area').hover(function(){
		//mouse over
		var url = $('#logo').attr('src');
		$('#logo').attr('src',url.replace(".jpg","Roll.jpg"));
	},
	function(){
		//mouse out
		var url = $('#logo').attr('src');
		$('#logo').attr('src',url.replace("Roll.jpg",".jpg"));
	});
	$('#header area').click(function(){
		var url = $('#logo').attr('src');
		$('#logo').attr('src',url.replace("Roll.jpg",".jpg"));			
	});
	
	$('.portfoliobutton').hover(function(){
		var url = $(this).attr('src');
		$(this).attr('src',url.replace(".gif","Roll.gif"));
	},function(){
		var url = $(this).attr('src');
		$(this).attr('src',url.replace("Roll.gif",".gif"));
	});
	$('.portfoliobutton').click(function(){
		var url = $(this).attr('src');
		$(this).attr('src',url.replace("Roll.gif",".gif"));
	});
});
