



// Special User Interface Effects for Neethan Shan's website

// by Theepan K. [G. Design.r, J11 IT Solutions Inc]





$(document).ready(function(){

   $('#twitterDiv').hover(function(){

   $('#twitterH').stop().animate({'opacity' : '0'}, 500);

   }, function(){

	   $('#twitterH').stop().animate({'opacity' : '1'}, 500);});

});





$(document).ready(function(){

   $('#contentBody #newsList li:nth-child(1)').hover(function(){

   $('#contentBody #newsList li:nth-child(1) h2').css("color","#0f9dd3");

   }, function(){$('#contentBody ul li:nth-child(1) h2').css("color","#ff6600");

   });

      $('#contentBody #newsList li:nth-child(2)').hover(function(){

   $('#contentBody #newsList li:nth-child(2) h2').css("color","#0f9dd3");

   }, function(){$('#contentBody #newsList li:nth-child(2) h2').css("color","#ff6600");

   });



});





$(document).ready(function(){

   $('#social ul li a div').hover(function(){

   $(this).stop().animate({'opacity' : '0'}, 200);

   }, function(){

	   $(this).stop().animate({'opacity' : '1'}, 1000);});

});





$(document).ready(function(){

   $('#bigBtns div a div').hover(function(){

   $(this).stop().animate({'opacity' : '0'}, 500);

   }, function(){

	   $(this).stop().animate({'opacity' : '1'}, 500);});

});





$(document).ready(function(){

   $('#upcomingEvents').hover(function(){

   $('#upcomingH').stop().animate({'opacity' : '0'}, 500);

   }, function(){

	   $('#upcomingH').stop().animate({'opacity' : '1'}, 500);});

});



$(document).ready(function(){

   $('#emailSignup').hover(function(){

   $('#emailSignupH').stop().animate({'opacity' : '0'}, 500);

   }, function(){

	   $('#emailSignupH').stop().animate({'opacity' : '1'}, 500);

	   });

});



$(document).ready (function () {

	$('#j11powered').hover (function () {

	$('#j11').stop().animate({'opacity':'0'},1000);

	},function (){

		$('#j11').stop().animate({'opacity':'1'},2000);

		});

});


$(document).ready (function () {

	$('#headr').hover (function () {

	$('#ndpLink').stop().animate({'opacity':'1','top':'0'},500);

	},function (){

		$('#ndpLink').stop().animate({'opacity':'0','top':'-35px'},500);

		});

});


