/**
 *
 */

$(document).ready(function() {

	$("form.signup").find("button").click(function() {
		$('form.signup').submit();
	});

	/*
	$("form.signup").find("button").each(function() {
			$(this).attr('name',$(this).attr('id'));
			$(this).attr('value',$(this).html());
	});
	*/

	$("form.signup").find("input[type='text']").each(function() {
		$(this).attr('name',$(this).attr('id'));
	});

	// add the notch to all sub-menu items
	$('body').delegate('.main-menu-item', 'mouseover', function() {
		var _w = $(this).width()/2 + 10;
		$(this).find('.sub-menu:first').css('background-position', _w+'px 0');
		if ($.browser.msie && $.browser.version.substr(0,1)<=7) $(this).toggleClass('main-menu-item-hover');
	});

});
