/* jQuery Document
*  @author: Zlatan Halilovic
*
*/

$(document).ready(function() {
	var $buttons = $('#rightContent li.buttons');
	
	$buttons.hover(function() {
		$(this).css({'background-position' : '0px -41px'});
		}, function() {
		$(this).css({'background-position' : '0px 0px'});
	});

});
	
   






























































