/*----------------------------------------------------------------------------
	After DOM is Loaded
----------------------------------------------------------------------------*/

	$(document).ready(function() {
		var root = $('#header h1 a').attr('href');

		/*----------------------------------------------------------------------------
			Fix IE hover:
		----------------------------------------------------------------------------*/
		if ($.browser.msie && parseFloat($.browser.msie) <= 7) {
			$('li, input[type=submit]').hover(
				function() {
					$(this).addClass('hover');
				},
				function() {
					$(this).removeClass('hover');
				}
			);
			$('li, input[type=submit]').focus(
				function() {
					$(this).addClass('hover');
				},
				function() {
					$(this).removeClass('hover');
				}
			);
		}

		$('form input[type!=hidden], form textarea').each(function() {
			$(this).inlineLabeler();
		});
	});

/*----------------------------------------------------------------------------
	While DOM is loading
----------------------------------------------------------------------------*/

	$(window).ready(function() {
		/*----------------------------------------------------------------------------
			Open external links in a new tab/window
		----------------------------------------------------------------------------*/
			$('a.external, a[rel=external]').live("click", function() {
				window.open($(this).attr('href'));
				return false;
			})

			$('div.coming-soon a').one("click", function() {
				$(this).fadeOut("normal", function() {
					$(this).fadeIn("fast").text("Contact Us to Buy");
				})
			})
	});