// JavaScript Document

$(document).ready(function() {
	$('li a').hover(function() { //mouse in
		$(this).animate({ paddingLeft: '20px' }, 100);
	}, function() { //mouse out
		$(this).animate({ paddingLeft: '15px' }, 100);
	});
	

   $('.entry img').each(function(){
       $el = $(this);
       var style = $el.attr('style');
       $el.attr('style','');
       $el.parent().attr('style',style);
    }); //Moves the inline styles

	$(".entry img").each(function(){
	  var title = this.alt;
	  $(this).after('<div class="caption">'+ title +'</div>');
	}); //Adds the dynamic captions.


	
	
	
});


