$(document).ready(function()
{
	// INDEX OVERS
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	if ("#btnVipMdlInfo") {
		$("#btnVipMdlInfo").hover(function(){
			$(this).attr("style", "background-position: -266px -168px;")
		}, function(){
			$(this).attr("style", "background-position: -266px -134px;")
		});
	}
	
	if ("#btnVipMdlHistory") {
		$("#btnVipMdlHistory").hover(function(){
			$(this).attr("style", "background-position: -390px -168px;")
		}, function(){
			$(this).attr("style", "background-position: -390px -134px;")
		});
	}
	
	if ("#btnVipMdlImgs") {
		$("#btnVipMdlImgs").hover(function(){
			$(this).attr("style", "background-position: -515px -168px;")
		}, function(){
			$(this).attr("style", "background-position: -515px -134px;")
		});
	}
	
	// PLANOS OVERS
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	
	if ("#videosBannerBtn") {
		$("#videosBannerBtn").hover(function(){
			$(this).attr("style", "background-position: 0px -213px;")
		}, function(){
			$(this).attr("style", "background-position: 0px -179px;")
		});
	}
	
	// VIDEOS OVERS
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	
	if ("#videosBannerBtn") {
		$("#videosBannerBtn").hover(function(){
			$(this).attr("style", "background-position: 0px -313px;")
		}, function(){
			$(this).attr("style", "background-position: 0px -280px;")
		});
	}
});