			$(document).ready(function(){				
				$('.content').delay(300).slideDown(800);

				$('.imageList a').click(function(){								
					$("#contentWrapper").slideUp(500);
					$('body').fadeOut();
				});		
				
				$( '.content' ).draggable();
				
				$('a[href*="youtube"]').colorbox({iframe:true, innerWidth:425, innerHeight:344});
				
				$('#menu a').each(function(){
					if($(this).attr('href') == window.location.protocol + "//" + window.location.host + window.location.pathname ){
						$(this).addClass('current');
					} 
				});				

				
				
				$('.page-id-558 #contentWrapper .content .item').click(function(){
					$('.page-id-558 #contentWrapper .content .item').each(function(){
						$('.page-id-558 #contentWrapper .content .item p').hide();
						
						$(this).animate({
							height: '175px'
						  }, 800);	
						  
						$(this).parent().animate({
							width: '115px',
					  	}, 800);						  					
					});

					$('p', this).show();
					
					$(this).parent().animate({
						width: '185px',
					  }, 800);
					
					$(this).animate({
						height: '720px',
					  }, 800);
					  
					  
				});						
			});	
