$(document).ready(function(){

	$('img.add-shadow, .content .left > p > img').each(function(){
				
		$(this).replaceWith('<span class="with-shadow"><img src="'+$(this).attr('src')+'" alt="'+$(this).attr('alt')+'" /></span>');
	
	});
	
	$('img.add-shadow-small').each(function(){
			
		$(this).replaceWith('<span class="with-shadow-small"><img src="'+$(this).attr('src')+'" alt="'+$(this).attr('alt')+'" /></span>');
	
	})
	
	$('.single-post .right p a img').each(function(){
	
		$(this).parent().attr('rel', 'prettyPhoto');
	
	});
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme: 'light_square'
	});
	
	//archive select
	$('select[name="month"]').change(function(){
		
		if($(this).val() != '') {
			window.location = $(this).val();
		}
		
	})

})
