$(function() { 
	$('#social img').mouseover(function() { Hover($(this)); })
				  .mouseout(function() { Unhover($(this)); });
	$('#playerLink').click(function() { OpenMusicPlayer(); });
});

function Hover(img) {
	img.attr('src', img.attr('src').replace('.png', '2.png'));
}

function Unhover(img) {
	img.attr('src', img.attr('src').replace('2.png', '.png'));
}

function OpenMusicPlayer() {
	window.open('http://www.humminghouse.com/wp-content/themes/humminghouse/musicplayer.html', '', 'height=125,width=325,menubar=0,location=0,resizable=0,scrollbars=0,titlebar=0,status=0,toolbar=0');
}
