$(document).ready(function () {
	
// default speed of animations
$.fx.speeds._default = 500;

// Hide now - show later
$('.whatIsInfo').fadeTo(0,0);

	// Animations
 //$('.whatIsInfo').delay(500).fadeTo(0, 1).show("slide", { direction: "up", easing: 'easeOutBounce' });
 $('.whatIsInfo').delay(500).fadeTo(500, 1);

	
// External links open in new window
$('a[href^=http]').live('click', function() {
	window.open(this.href);
	return false;
});	
	
	// buttons
	$('.chkb').buttonset();
	
	$('input.button, input:submit, .but').button(
//	{icons: {primary: "ui-icon-circle-arrow-s"}}
	{icons: {primary: "ui-icon-circle-plus"}}
	)

$("input[type=checkbox][checked]").each( 
    function() { 
       $(this).parent().find('label').addClass('checked');
    } 
);
$("input[type=checkbox]").live('click',function(){
	 $(this).parent().find('label').toggleClass('checked');
});
//

	// textarea
	$('textarea').addClass('ui-state-highlight ui-corner-all');
	
	// add styles
	$('.alt2').addClass('ui-widget-header ui-corner-top');
	$('.cont').addClass('ui-widget-content ui-corner-bottom');
	$('#map_canvas').addClass('ui-widget-content');
	
	

	$('tbody tr:odd').addClass('ui-state-default');
	$('td').addClass('lrborder');
})
