var $j = jQuery.noConflict();
$j(function(){
			var searchBoxText = "Search Here...";
			$j('#s').focus(function(){
				if($j(this).attr("value") == searchBoxText) {
					$j(this).attr("value", "");
				}
			});
			$j("#s").blur(function(){
				if($j(this).attr("value") == ""){
					$j(this).attr("value", searchBoxText);
				}
			});
			$j("#aboutLink").click(function(){
				if ($j("#aboutMe").is(":hidden")){
					$j("#nav li div"). slideUp("slow");
					$j("#aboutMe").slideDown("slow");}
				else{
					$j("#aboutMe").slideUp("slow"); }
			});
			$j("#contactLink").click(function(){
				if ($j("#contactMe").is(":hidden")){
					$j("#nav li div"). slideUp("slow");
					$j("#contactMe").slideDown("slow");}
				else{
					$j("#contactMe").slideUp("slow"); }
			});

			$j(".post-comments").addClass("hidden"); //hide all comments on page
			
			var targetOffset =  $j(this).parent().parent().find(".post-comments").offset().top;
			$j(".post-comments-count").toggle(
				function () {
						$j(this).parent().parent().find(".post-comments").removeClass("hidden");
						$j('html,body').animate({scrollTop: $j(this).parent().parent().find(".post-comments").offset().top}, 1000);
				  },
				  function () {
						$j(this).parent().parent().find(".post-comments").addClass("hidden");
						/* $j('html,body').animate({scrollTop: $j(this).parent().parent().find(".post-comments").offset().top}, 1000); */
				  }
			);
});
