    $(document).ready(function() {
        $('#flash').flash({
            swf:'/swf/logo_andregister.swf',
			width:397,
            height:164,
            params:{
                wmode:'transparent'
            },
			flashvars: {
                    destURL:'https://bbnetwork.virtuefusion.com/cwc/registration/Register.do?affiliateId=stb_001'
                }
 
        });
        $('#play').flash({
            swf:'/swf/play_now.swf',
			width:144,
            height:44,
            params:{
                wmode:'transparent'
			},
			flashvars: {
                    destURL:'#'
                }
        });
        $('#carousel .inner').jCarouselLite({
            btnNext: '.next',
            btnPrev: '.prev',
            visible: 3
        });
    });



//Calendar
var today=new Date();
var thisMonth = today.getMonth() + 1;
var thisYear = 2010;
var months=new Array(); // regular array (add an optional integer
months[1]="Jan";
months[2]="Feb";
months[3]="Mar";
months[4]="Apr";   
months[5]="May";
months[6]="Jun";
months[7]="Jul";     
months[8]="Aug";
months[9]="Sep";
months[10]="Oct";
months[11]="Nov";
months[12]="Dec";


$(window).load(function() {
		$("#calendarText").fadeOut("normal");
		$("#calendarImg").fadeOut("normal");
		$("#calendarText").text(months[thisMonth] + " " + thisYear);
		$("#calendarImg").attr("src","/images/calendar/"+thisMonth+".jpg");
		$("#calendarImg").fadeIn("normal");
		$("#calendarText").fadeIn("normal");

});

$(document).ready(function() {


   $("#prevCalendar").click(function() {
		
		if(thisMonth > 1)
		thisMonth--;
		
		$("#calendarText").fadeOut("normal");
		$("#calendarImg").fadeOut("normal");
		$("#calendarText").text(months[thisMonth] + " " + thisYear);
		$("#calendarImg").attr("src","/images/calendar/"+thisMonth+".jpg");
		
		$("#calendarImg").fadeIn("normal");
		$("#calendarText").fadeIn("normal");


   });
   
   
   $("#nextCalendar").click(function() {

		if(thisMonth < 12)
		thisMonth++;
		$("#calendarText").fadeOut("normal");
		$("#calendarImg").fadeOut("normal");
		$("#calendarText").text(months[thisMonth] + " " + thisYear);
		$("#calendarImg").attr("src","/images/calendar/"+thisMonth+".jpg");
		$("#calendarImg").fadeIn("normal");
		$("#calendarText").fadeIn("normal");
   });
	  
	  
});


function offernum(num)
{
window.open("http://offers.steamybingo.com/offernumber.aspx?num="+num,"_blank","location=0,status=0,scrollbars=1,width=500,height=300"); 

}
