jQuery.noConflict();

jQuery(document).ready( function($) {
	$('a.gamePlayNow, a.gamePlayFree, a.gamePlayImg, a.gamePlayTxt').click( function() {
		var size = $(this).attr('rel');
		var width = 835, height = 625;
		
		if ( size == 's' )
		{
			width = 340;
			height = 320;
		}
		else if ( size == 'l' )
		{
			width = 980;
			height = 740;
		}
		
		window.open(this.href, 'casino', 'width='+width+',height='+height+',scrollbars=yes,resizeable=no');
		return false;
	});
});

