$(document).ready( function(){
		
			//  Slide toggle  starts 
			$(".slideBtn a.open").click(function(){
					$("#SlideMain").slideDown(500);	
					$(this).css('display','none');
					$(".slideBtn a.close").css('display','block');
					return false;
				})
			$(".slideBtn a.close").click(function(){
				$("#SlideMain").slideUp(500);	
				$(this).css('display','none');
				$(".slideBtn a.open").css('display','block');
				return false;
			})
			//  Slide toggle  ends ************************************ 
			
			
			//  postList_01 overlay toggle starts 
			$(".postList_01 .imgBlock").hover(function(){
					$(".overlay", this ).animate({height:175}, 500 );
				}, function(){
					$(".overlay", this).animate({height:0}, 500 );
				})
			//  postList_01 overlay toggle ends ************************************ 
			
			
			//  postList_01 overlay toggle starts 
			$(".postListOuter_01 ul a").hover(function(){
					$(".overlay", this ).animate({height:80}, 500 );
				}, function(){
					$(".overlay", this).animate({height:0}, 500 );
				})
			//  postList_01 overlay toggle ends ************************************ 
				
			
			//  categoryList_01 settings
			$(".categoryList_01 li:nth-child(3n)").addClass('clearLi');
			
			
			
		})
