 $(document).ready(function() {
 	$("#lnk_header_search").click(function() {
		$('#frm_header_search').submit();
	});
 	$(".search").click(function() {
		$('#frm_header_search').submit();
	});
	
 });
 
function domainname_search()
{
	if($('#domain_name').val() == '' || $('#domain_name').val() == 'Start your search here')
	{
		alert('Domain is required');
	}
	else
	{
		$('#frm-domain-name-search').submit();
	}
}

$(function() {
// OPACITY OF BUTTON SET TO 50%
	$(".sub_box").css("opacity","0.5");
 
// ON MOUSE OVER
	$(".sub_box").hover(function () {

// SET OPACITY TO 100%
		$(this).stop().animate({
		opacity: 2.0
		}, "slow");
		
		},
	 
// ON MOUSE OUT
		function () {
		 
			// SET OPACITY BACK TO 50%
			$(this).stop().animate({
			opacity: 0.5
			}, "slow");
			});
});
	
$(function() {
// OPACITY OF BUTTON SET TO 50%
$(".sub_box_right").css("opacity","0.5");

// ON MOUSE OVER
$(".sub_box_right").hover(function () {

// SET OPACITY TO 100%
$(this).stop().animate({
opacity: 2.0
}, "slow");

},

// ON MOUSE OUT
function () {
 
	// SET OPACITY BACK TO 50%
	$(this).stop().animate({
	opacity: 0.5
	}, "slow");
	});





});
		
		
		
		
$(function() {
// OPACITY OF BUTTON SET TO 50%
	$(".input").css("opacity","0.3");
 
// ON MOUSE OVER
	$(".input").hover(function () {

// SET OPACITY TO 100%
		$(this).stop().animate({
		opacity: 3.0
		}, "slow");
		
		},
	 
	// ON MOUSE OUT
	function () {
	 
		// SET OPACITY BACK TO 50%
		$(this).stop().animate({
		opacity: 0.5
		}, "slow");
		});

});