// JavaScript Document
var $k = jQuery.noConflict();
 
 $k(document).ready( function() {
							  
							
							 
   $k(".menu_resume div").hover(function(){
			
		
		if(this.className != "submenu_resume")
		{
			
 			var t = $k(':nth-child(1)', this);
			var j = $k(':nth-child(2)', this);
			
			t.stop().animate({ color : "#03b8af", borderBottomColor: "#4f90e9"}, 500);
			if( j.is(":hidden") )
			{
			 j.stop().fadeIn(500);
			}
		}
	
		
		
		},
		function()
		{
			if(this.className != "submenu_resume")
			{
				var t = $k(':nth-child(1)', this);
				var j = $k(':nth-child(2)', this);
				t.stop().animate({ color: "#3300FF", borderBottomColor: "#140012"}, 500);
				
				j.fadeOut(500);
			}
		});
   
   function emptyFn()
   {
	   
   }

 
 $k(".subView_resume").hover(function()
									  {
									  },
							function()
						  {
							 
				//.subView_resume
							$k(this).slideUp(500);
				$k(this).fadeOut(500);
						  });
 $k("a").hover(function(){
						$k(this).stop().animate({ color: "#14dacf"}, 500);
						},
						function()
						{
							$k(this).stop().animate({ color: "#FF3300"}, 500);
						});
$k(".viewMore a").click(function(){
								 $k(this).stop().animate({ color: "#0066FF"}, 500);
								 });
$k(".viewMore a").hover(function(){
 		
				$k(this).stop().animate({ color: "#14dacf"}, 500);
				var n = this.parentNode;
				if($k(n).next().is(":hidden"))
						{
							$k(n).next().slideDown(500);
				$k(n).next().fadeIn(500);
						}
		},
		function(){
 		
				$k(this).stop().animate({ color: "#FF3300"}, 500);
			//	var n = this.parentNode;
			//	$k(n).next().fadeOut(500);
		}
		);

							  });
