/*
 * ####################################
 * # This is Act 85                   #
 * # ################################ #
 * # In-House Design Services         #
 * # Copyright (c) 2010 Act 85, LLC   #
 * # All Rights Reserved.             #
 * ####################################
 * ####################################
 * # PROJECT: plotLight               #
 * # -------------------------------- #
 * # NAME: core.js                    #
 * ####################################
 */

$(document).ready(function() {
	$('.js_warning').addClass('invisible');
	// Handle header button hover events
	// Regular Buttons
	$(".core_header_button").hover(function() {
		$(this).addClass("core_header_button_hover");
	},function() {
		$(this).removeClass("core_header_button_hover");
	});
	// Login Button   
	$(".core_header_button_login").hover(function() {
		$(this).addClass("core_header_button_login_hover");
	},function() {
		$(this).removeClass("core_header_button_login_hover");
	});
});

