$(function() {

// Initialize tabs
$("#tabs").tabs();

// Botones UI
$('.fg-button').hover(
	function(){ $(this).removeClass('ui-state-default').addClass('ui-state-focus'); },
	function(){ $(this).removeClass('ui-state-focus').addClass('ui-state-default'); }
);

// Menu desplegable
$('#flat').menu({
	content: $('#flat').next().html(), // grab content from this page
	showSpeed: 400
});

// Initialize toolbar
$('#toolbar').toolbar();

$('#toolbar-search input[type=text]').focus(function() {
	if ($(this).val() == $(this).attr('defaultValue')) {
		$(this).val('');
	}
}).blur(function() {
	if ($(this).val() == '') {
		$(this).val($(this).attr('defaultValue'));
	}
});

});