$(document).ready(function(){
	if( (typeof jQuery.fn.ifixpng != 'undefined') && ($('#bubble').length > 0) ){
		$('#bubble').ifixpng();
	}
	$('a.a-blackjack').mouseover(function(){
    	$('#topcasinogames-content').addClass('blackjack');
		$('#topcasinogames-content').removeClass('roulette');
		$('#topcasinogames-content').removeClass('slots');
		$('#game-header').text('Make 21 with Blackjack');
    });
	$('a.a-roulette').mouseover(function(){
		$('#topcasinogames-content').addClass('roulette');
    	$('#topcasinogames-content').removeClass('blackjack');		
		$('#topcasinogames-content').removeClass('slots');
		$('#game-header').text('Spin that Roulette wheel');
    });	
	$('a.a-slots').mouseover(function(){
		$('#topcasinogames-content').addClass('slots');
    	$('#topcasinogames-content').removeClass('blackjack');		
		$('#topcasinogames-content').removeClass('roulette');
		$('#game-header').text('Got Slots fever?');
    });			
	
});
