 $(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%
	$(".domain li").css("opacity","0.5");
 
// ON MOUSE OVER
	$(".domain li").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");
			});
	
	
	
	
 	});


		
$(function() {
// OPACITY OF BUTTON SET TO 50%
	$("#sub_boxes li").css("opacity","0.6");
 
// ON MOUSE OVER
	$("#sub_boxes li").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");
			});
	
	
	
	
 	});
		
		
		
		
$(function() {
// OPACITY OF BUTTON SET TO 50%
	$(".input").css("opacity","0.7");
 
// 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.7
			}, "slow");
			});
	
	
	
	
 	});
