$( document ).ready( function( ) {
	if( $( '#cards' ).length > 0 && jQuery.browser.webkit ){
		$( '#cards button.module_btn' ).addClass( 'topAlign' );		
	}
	$( '#youtube_content' ).find( '.youtube' ).addClass( 'platebg' );
	
	setDayTime();
	if ( $( '#welcome span.welcomeText' ).height( ) > 25 ) {
		$( '#welcome' ).addClass( 'top' );	
	}
	$( '#welcome.invisible' ).removeClass( 'invisible' );
	
	if( $( '#phoneToggler' ).attr( 'checked' ) ){
		$( '#phoneNumber' ).removeClass( 'hidden' );
	}
	
	
	var tumbler = true;
	$( '#toggler' ).click( function() {
		if( tumbler ){
			$( this ).text( 'show' );
		}
		else{
			$( this ).text( 'hide' );
		}
		$( '#pi_show' ).toggleClass( 'hidden' );
	});
	
	$( '#phoneToggler' ).click( function() {
		$( '#phoneNumber' ).toggleClass( 'hidden' );
	});
});
function setDayTime() {
	var date = new Date();
	var welcomeText;
	var hours = date.getHours();
	var minutes = date.getMinutes();
	var timeout = 900000;
	if (minutes > 45) {
		timeout = minutes * 60000;	
	}
	if( $( '#locationView span.locationText' ).text() == 'United States' ){
		welcomeText = "Welcome";		
	}
	else {		
		if( hours >= 3 && hours < 12 ) {
			welcomeText = "Good Morning";
		}
		if( hours >= 12 && hours < 17 ) {
			welcomeText = "Good afternoon";
		}
		if( hours >= 17 || hours < 3 ) {
			welcomeText = "Good evening";
		}
	}	
	$( '#daytime' ).html( welcomeText );
	setTimeout( function() {setDayTime()}, timeout );
}
