$(document).ready(function(){
   $('.hover').bind({
			mouseenter: function() {
				toggleHover($(this).attr('id'), 1)
			}, 
			mouseleave: function() {
				toggleHover($(this).attr('id'), 0)
			}
		});
		$('.social').bind({
			mouseenter: function() {
				$('#'+$(this).attr('id')).attr('src','/images/'+$(this).attr('id')+'_hover.png');
			},
			mouseleave: function() {
				$('#'+$(this).attr('id')).attr('src','/images/'+$(this).attr('id')+'.png');
			}
		});
	(new Image()).src = '/images/address2a_hover.png';
	(new Image()).src = '/images/address2b_hover.png';
	
	if (window.location.toString().indexOf('?prnt') != -1) {
		window.print();
		window.back();
	}
	
	
});

function toggleHover(id, hoverImage) {
	if(hoverImage)
		$('#'+id+'_img').attr('src','/images/'+id+'_hover.png');
	else
		$('#'+id+'_img').attr('src','/images/'+id+'.png');
}

