/*------------------------------------------------------------------------------
	JS Functions
------------------------------------------------------------------------------*/	
$(document).ready( function() {
	
	// init page default visibilities
	
	// set the width for the toggle - dynamically :)
	$('.extended').css('width', $('.extended').outerWidth(true));
	$('#toolBar .right').css('right', -1 * ($('.extended').outerWidth(true)-37));
	// buttons to slide the login
	$('.mycoremark_slide, .mycoremark_graphic_home').click( function() {
		
		// create the animation - slide out
		$('#toolBar .right').animate({right:'37px' }, 500);
		$('.extended input:first').focus();
		return false;
			
	}); /* mycoremark_slide */
	
}); /* document ready */


