jQuery(document).ready(function(){
			
			jQuery('.the_contents').css('visibility','visible');
			jQuery('#header').css('visibility','visible');
						
			Cufon.replace('.deborah', {
				hover: true
			});
			
			Cufon.now();
			
			//LazyLoad Images
			//jQuery("img").lazyload({
			//	effect      : "fadeIn"
			//});
			
			
			// Rollover effects
			jQuery('a.fade_img_child').hover(				
				function(){
					jQuery(this).children().animate({ opacity : 0.4 }, 'fast', 'easeInSine'); 
				},
				function(){
					jQuery(this).children().animate({ opacity : 1 }, 'fast', 'easeOutSine'); 
				}
				
			);
			
			/*jQuery('.image a:has(img)').hover(function(){
				jQuery('img', this).animate({ opacity : 0.4 }, 300 );
				},
				function () {
					jQuery('img', this).animate({ opacity : 1 }, 300 );
				}
			);
			
			jQuery('.video a:has(img)').hover(function(){
				jQuery('img', this).animate({ opacity : .5 }, 250 );
				},
				function () {
					jQuery('img', this).animate({ opacity : 1 }, 250 );
				}
			);
			
			jQuery('.misc a:has(img)').hover(function(){
				jQuery('img', this).animate({ opacity : .5 }, 250 );
				},
				function () {
					jQuery('img', this).animate({ opacity : 1 }, 250 );
				}
			);*/
			
			
			/////////////////////////////////
			
			jQuery('.post-preview').animate({ height: 'hide' });
			
			jQuery(".post").hover(function(){
				jQuery('.post-preview', this).animate({ height: 'show' });
				},
				function () {
					jQuery('.post-preview', this).animate({ height: 'hide' });
				}
			);
			jQuery(".page").hover(function(){
				jQuery('.post-preview', this).animate({ height: 'show' });
				},
				function () {
					jQuery('.post-preview', this).animate({ height: 'hide' });
				}
			);
		
			jQuery("#show-nav").click(function(){				   				   
				jQuery('#sidebar-left').slideDown('normal');
				
				jQuery('#sidebar-right').animate({ width: 'show' });
			});
			
			jQuery("#hide-nav").click(function(){				   				   
				jQuery('#sidebar-left').slideUp('slow');
				
				jQuery('#sidebar-right').animate({ width: 'hide' });
			});
			
		});
