2011-10-06 01:04:47 +08:00
|
|
|
$(function(){
|
2011-10-19 05:29:50 +08:00
|
|
|
/* Load Tabs */
|
2011-10-06 01:04:47 +08:00
|
|
|
$("#tabs").tabs();
|
2011-10-19 05:29:50 +08:00
|
|
|
|
|
|
|
|
/* Theme buttons */
|
2011-10-06 01:04:47 +08:00
|
|
|
$( "button, input:submit", ".wrap_content" ).button();
|
|
|
|
|
$( "button, input:submit", ".contest_wrap" ).button();
|
2011-10-19 05:29:50 +08:00
|
|
|
|
|
|
|
|
/* Subnav options */
|
2011-10-06 01:04:47 +08:00
|
|
|
$( "#admin" ).click(function() {
|
|
|
|
|
$( "#submenu" ).toggle( 'blinds', null, 500 );
|
|
|
|
|
$( "#clear" ).toggle( 'blinds', null, 500 );
|
|
|
|
|
return false;
|
|
|
|
|
});
|
|
|
|
|
});
|