$(document).ready( function(){
	
	//accordian start here 
	$(".linkbox ul").hide();
	//$(".linkbox ul:first").show();
	$(".linkbox h2").find("a").addClass("close");
	//$(".linkbox h2:first").find("a").removeClass("close");
	//$(".linkbox h2:first").find("a").addClass("open");
	$(".linkbox h2").click( function(){
		
		var checkElement = $(this).next();
		  if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
			checkElement.slideUp('normal');
			$(this).find("a").removeClass("open");
			$(this).find("a:first").addClass("close");
			return false;
			}
		  if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
			$('.linkbox ul:visible').slideUp('normal');
			checkElement.slideDown('normal');
			$(".linkbox h2").find("a:first").addClass("close");
			$(this).find("a").removeClass("close");
			$(this).find("a").removeClass("open");
			$(this).find("a:first").addClass("open");
			return false;
			}
		
	});
	
	
	//menu animation start here 
	$(".linkbox li a").hover( function(){
									  // alert("hi");
		$(this).animate({marginLeft : "5px"}, "normal");
	}, function(){
		$(this).animate({marginLeft : "0px"}, "normal");
	}
	);

});


