$(document).ready(function(){
	$('#homepage-tabs .tab a').mouseenter(function(){
		if($(this).attr('class') != 'tab-header'){
			$(this).find('span.header').css('background-position','24px -31px');
		}
		else{
			$(this).find('span.header').css('background-position','0px -31px');
		}
	});
	
	$('#homepage-tabs .tab a').mouseleave(function(){
		if($(this).attr('class') != 'tab-header'){
			$(this).find('span.header').css('background-position','24px 0px');
		}
		else{
			$(this).find('span.header').css('background-position','0px 0px');
		}
	});
});