$(document).ready(function(){ //engage $( "#engage" ).click(function() { $( ".engage" ).slideToggle( "fast" ); $( "#close" ).show( "slow" ); }); $( "#close" ).click(function() { $( ".engage" ).hide(); }); //bottom $( "#club-seven-content" ).hide(); $( "#lodge-content" ).hide(); $( "#dining-content" ).hide(); $( "#promos-content" ).hide(); $( "#events-content" ).hide(); //casino tab $( "#casino" ).click(function() { $( "#casino-content" ).fadeIn(); $( "#club-seven-content" ).hide(); $( "#lodge-content" ).hide(); $( "#dining-content" ).hide(); $( "#promos-content" ).hide(); $( "#events-content" ).hide(); //orange buttons $( ".one" ).addClass( "on" ); $( ".two" ).removeClass( "on" ); $( ".three" ).removeClass( "on" ); $( ".four" ).removeClass( "on" ); $( ".five" ).removeClass( "on" ); $( ".six" ).removeClass( "on" ); }); //club seven tab $( "#club-seven" ).click(function() { $( "#casino-content" ).hide(); $( "#club-seven-content" ).fadeIn(); $( "#lodge-content" ).hide(); $( "#dining-content" ).hide(); $( "#promos-content" ).hide(); $( "#events-content" ).hide(); //orange buttons $( ".one" ).removeClass( "on" ); $( ".two" ).addClass( "on" ); $( ".three" ).removeClass( "on" ); $( ".four" ).removeClass( "on" ); $( ".five" ).removeClass( "on" ); $( ".six" ).removeClass( "on" ); }); //lodge tab $( "#lodge" ).click(function() { $( "#casino-content" ).hide(); $( "#club-seven-content" ).hide(); $( "#lodge-content" ).fadeIn(); $( "#dining-content" ).hide(); $( "#promos-content" ).hide(); $( "#events-content" ).hide(); //orange buttons $( ".one" ).removeClass( "on" ); $( ".two" ).removeClass( "on" ); $( ".three" ).addClass( "on" ); $( ".four" ).removeClass( "on" ); $( ".five" ).removeClass( "on" ); $( ".six" ).removeClass( "on" ); }); //events tab $( "#events" ).click(function() { $( "#casino-content" ).hide(); $( "#club-seven-content" ).hide(); $( "#lodge-content" ).hide(); $( "#dining-content" ).hide(); $( "#promos-content" ).hide(); $( "#events-content" ).fadeIn(); //orange buttons $( ".one" ).removeClass( "on" ); $( ".two" ).removeClass( "on" ); $( ".three" ).removeClass( "on" ); $( ".four" ).addClass( "on" ); $( ".five" ).removeClass( "on" ); $( ".six" ).removeClass( "on" ); }); //promos tab $( "#promos" ).click(function() { $( "#casino-content" ).hide(); $( "#club-seven-content" ).hide(); $( "#lodge-content" ).hide(); $( "#dining-content" ).hide(); $( "#promos-content" ).fadeIn(); $( "#events-content" ).hide(); //orange buttons $( ".one" ).removeClass( "on" ); $( ".two" ).removeClass( "on" ); $( ".three" ).removeClass( "on" ); $( ".four" ).removeClass( "on" ); $( ".five" ).addClass( "on" ); $( ".six" ).removeClass( "on" ); }); //dining tab $( "#dining" ).click(function() { $( "#casino-content" ).hide(); $( "#club-seven-content" ).hide(); $( "#lodge-content" ).hide(); $( "#dining-content" ).fadeIn(); $( "#promos-content" ).hide(); $( "#events-content" ).hide(); //orange buttons $( ".one" ).removeClass( "on" ); $( ".two" ).removeClass( "on" ); $( ".three" ).removeClass( "on" ); $( ".four" ).removeClass( "on" ); $( ".five" ).removeClass( "on" ); $( ".six" ).addClass( "on" ); }); });