
$(document).ready(
	function()
	{
		var pleaseWait = "FALSE"
		

		$(".blog-individual-title").SlideInLeft(1000);
		
		$(".faqTitle").SlideInLeft(1000);
		
		$(".deadTitle").SlideInRight(1000); 
		
		$(".deadDescription").SlideInLeft(1000);
		
		$(".aliveTitle").SlideInRight(1000);
		
		$(".aliveDescription").SlideInLeft(1000);
		
		$(".owner").SlideInRight(1000);

		$(".blog-date").SlideInRight(1000);
		
		$(".blog-title").SlideInLeft(1000);
		
		
		
		$(".navLink").hover(function() { 
			pleaseWait = "TRUE";
			$(this).animate( { height:'30px', marginTop:'13px', paddingTop:'11px', backgroundColor:'#436fbf' }, 200 );
		},function(){ 
			$(this).animate( { height:'20px', marginTop:'20px', paddingTop:'4px', backgroundColor:'#ba6159' }, 200 );
			pleaseWait = "FALSE";
		});

		$(".blog-title").hover(function() { 
			/*$(this).animate( { opacity: .5 }, 700 );*/
			$(this).animate( { color:'#0000B3', paddingLeft:'10px' }, 300 );
		},function(){ 
			/*$(this).animate( { opacity: 1.0 }, 700 );*/
			$(this).animate( {  color:'#436fbf', paddingLeft:'0px' }, 400 );
		});

		$(".read-comments").hover(function() { 
			/*$(this).animate( { opacity: .5 }, 700 );*/
			$(this).animate( { color:'#0000B3' }, 200 );
		},function(){ 
			/*$(this).animate( { opacity: 1.0 }, 700 );*/
			$(this).animate( {  color:'#436fbf' }, 200 );
		});

		$(".pageLinks").hover(function() { 
			/*$(this).animate( { opacity: .5 }, 700 );*/
			$(this).animate( { color:'#0000B3' }, 300 );
		},function(){ 
			/*$(this).animate( { opacity: 1.0 }, 700 );*/
			$(this).animate( {  color:'#436fbf' }, 400 );
		});

		$(".options").hover(function() { 
			/*$(this).animate( { opacity: .5 }, 700 );*/
			$(this).animate( { backgroundColor:'#436fbf', color:'#F5F5F5', width:'155px' }, 200 );
		},function(){ 
			/*$(this).animate( { opacity: 1.0 }, 700 );*/
			$(this).animate( {  backgroundColor:'#F5F5F5', color:'#666666', width:'130px' }, 200 );
		});

		$("#OurLink").hover(function() { 
			/*$(this).animate( { opacity: .5 }, 700 );*/
			$("#text1").animate( { opacity:0 }, 400 );
			$("#text2").animate( { opacity:1.0 }, 400 );
		},function(){ 
			/*$(this).animate( { opacity: 1.0 }, 700 );*/
			$("#text2").animate( { opacity:0 }, 400 );
			$("#text1").animate( { opacity:1.0 }, 400 );
		});


		for (var x = 1; x <= 500; x++)
		   {
		   $("strong").animate( { color:'#000099' }, 3000 );
		   $("strong").animate( { color:'#666666' }, 3000 );
		   $("strong").animate( { color:'#bf645d' }, 3000 );
		   $("strong").animate( { color:'#666666' }, 3000 );
		   }
		   

	}		
);




