$(document).ready(function() 
{
	$('.flip').hover(function() {
		var j = $(this).attr("src");
		var overj = j.replace(".jpg","_on.jpg");
		$(this).attr({"src":overj});
	}, function() {
		var j = $(this).attr("src");
		var normalj = j.replace("_on.jpg",".jpg");
		$(this).attr({"src":normalj});
	});
	
	$(".navflip").hover(function() {
		//$(this).attr({"src":$(this).attr("src").replace("images/","images/images/")});
		$(this).stop().fadeTo("normal",1.0);
	},function() {
		//$(this).attr({"src":$(this).attr("src").replace("images/images/","images/")});
		$(this).stop().fadeTo("normal",0.3);
	});
	$(".navflip").fadeTo("fast",0.3);
	
	/* PROJECTS */
	$(".b").hover(function() {
		$(this).css({"border":"1px solid #666"});
	},function() {
		$(this).css({"border":"1px solid #dbdbdb"});
	});
	
	$(".popcolor").hover(function() {
		var id = $(this).attr("id").replace("popcolor-","");
		$("#fademe-"+id).css({"border":"1px solid #666"});
		
	},function() {
		var id = $(this).attr("id").replace("popcolor-","");
		$("#fademe-"+id).css({"border":"1px solid #dbdbdb"});
		
	});
});	