function mouseAction() {
	//Store - iTunes rollover
    $('#navbar-links-store').hover(
        function(){ // Change the input image's source when we "roll on"
            $('#sp-store').attr({ style : 'display: none;'});
            $('#img-store').attr({ style : 'display: block;'});
        },
        function(){ // Change the input image's source back to the default on "roll off"
            $('#sp-store').attr({ style : 'display: block;'});
            $('#img-store').attr({ style : 'display: none;'});
   		}
    );

	//music - mypace rollover
    $('#navbar-links-music').hover(
		function(){$('#sp-music').html("reverbnation")},
		function(){$('#sp-music').html("music")}
        /*function(){ // Change the input image's source when we "roll on"
            $('#sp-music').attr({ style : 'display: none;'});
            $('#img-music').attr({ style : 'display: block;'});
        },
        function(){ // Change the input image's source back to the default on "roll off"
            $('#sp-music').attr({ style : 'display: block;'});
            $('#img-music').attr({ style : 'display: none;'});
   		}*/
    );


	//news - twitter rollover
    $('#navbar-links-news').hover(
        function(){ // Change the input image's source when we "roll on"
            $('#sp-news').attr({ style : 'display: none;'});
            $('#img-news').attr({ style : 'display: block;'});
        },
        function(){ // Change the input image's source back to the default on "roll off"
            $('#sp-news').attr({ style : 'display: block;'});
            $('#img-news').attr({ style : 'display: none;'});
   		}
    );

	//fanpage - Facebook rollover
    $('#navbar-links-fanpage').hover(
        function(){ // Change the input image's source when we "roll on"
            $('#sp-fanpage').attr({ style : 'display: none;'});
            $('#img-fanpage').attr({ style : 'display: block;'});
        },
        function(){ // Change the input image's source back to the default on "roll off"
            $('#sp-fanpage').attr({ style : 'display: block;'});
            $('#img-fanpage').attr({ style : 'display: none;'});
   		}
    );

	//videos - youTube
    $('#navbar-links-videos').hover(
        function(){ // Change the input image's source when we "roll on"
            $('#sp-videos').attr({ style : 'display: none;'});
            $('#img-videos').attr({ style : 'display: block;'});
        },
        function(){ // Change the input image's source back to the default on "roll off"
            $('#sp-videos').attr({ style : 'display: block;'});
            $('#img-videos').attr({ style : 'display: none;'});
   		}
    );

	//photos - Flickr
    $('#navbar-links-photos').hover(
        function(){ // Change the input image's source when we "roll on"
            $('#sp-photos').attr({ style : 'display: none;'});
            $('#img-photos').attr({ style : 'display: block;'});
        },
        function(){ // Change the input image's source back to the default on "roll off"
            $('#sp-photos').attr({ style : 'display: block;'});
            $('#img-photos').attr({ style : 'display: none;'});
   		}
    );

    //presspack - SonicBids
    $('#navbar-links-presspack').hover(
        function(){ // Change the input image's source when we "roll on"
            $('#sp-presspack').attr({ style : 'display: none;'});
            $('#img-presspack').attr({ style : 'display: block;'});
        },
        function(){ // Change the input image's source back to the default on "roll off"
            $('#sp-presspack').attr({ style : 'display: block;'});
            $('#img-presspack').attr({ style : 'display: none;'});
   		}
    );
}
