2011-10-05 17:04:47 +00:00
|
|
|
$(function(){
|
2011-10-18 21:29:50 +00:00
|
|
|
/* Load Tabs */
|
2011-11-06 23:09:51 +00:00
|
|
|
//$("#tabs").tabs();
|
|
|
|
$('#topbar').dropdown()
|
|
|
|
|
|
|
|
$('.tabs').tabs();
|
|
|
|
$('.qsos').tabs();
|
2011-10-18 21:29:50 +00:00
|
|
|
|
|
|
|
/* Theme buttons */
|
2011-10-05 17:04:47 +00:00
|
|
|
$( "button, input:submit", ".wrap_content" ).button();
|
2011-11-05 22:16:28 +00:00
|
|
|
$( "button, input:reset", ".wrap_content" ).button();
|
2011-10-05 17:04:47 +00:00
|
|
|
$( "button, input:submit", ".contest_wrap" ).button();
|
2011-10-18 21:29:50 +00:00
|
|
|
|
|
|
|
/* Subnav options */
|
2011-10-05 17:04:47 +00:00
|
|
|
$( "#admin" ).click(function() {
|
|
|
|
$( "#submenu" ).toggle( 'blinds', null, 500 );
|
|
|
|
$( "#clear" ).toggle( 'blinds', null, 500 );
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
});
|