// jQuery 1.3.2
// Written by Coleman Stevenson
// www.cleancoledesigns.com
// cole@cleancoledesigns.com
(function($) {
    // $() will work as an alias for jQuery() inside of this function

$(document).ready(function () {


$("#about,#store,#interact,#blog,#contact").hover(function () {
	$(this).attr("src", $(this).attr("src").split(".").join("-hover."));
  	}, function() {
    $(this).attr("src", $(this).attr("src").split("-hover.").join("."));
 });

$(".networking-icons").hover(function () {
	$(this).attr("src", $(this).attr("src").split(".").join("-hover."));
  	}, function() {
    $(this).attr("src", $(this).attr("src").split("-hover.").join("."));
  });
});
})(jQuery);