if ( document.documentElement.clientWidth > '500' ) {

// Min kode
jQuery(document).ready(function(){
	
	// Live Loop
	$('body').live('test', function() {
	
		// Les mer-knapp
		$('.excerpt').each(function() {
			var el = $(this);
			var url = $(this).parent().find('h2').find('a').attr('href');
			el.html(el.html().replace('[...]', '[...] <a class="read_more" href="' + url + '"><span class="_button">Les resten av posten »</span></a>'));
		});
	
		// Bilder i posten
		$('.content').find('img').each(function() {
			var object = $(this);
			var src = $(this).attr('src');
			var title = $(this).parent().attr('title');
			var imgClass = $(this).attr('class');
			if ( !(typeof title == 'undefined') ) {
				$(this).replaceWith('<div class="image_container ' + imgClass + '"><img class="' + imgClass + '" src="' + src + '" alt="' + title + '" /><br /><span class="image_title" style="display:none;">' + title + '</span></div>');
			}
		});
		
		// Bildeoppførsel
		$('.image_container').hover(function() {
			$(this).find('.image_title').slideDown(200);
		}, function() {
			$(this).find('.image_title').slideUp(200);
		});
			
	});
	
	// Trigger for Live Loop
	$('body').trigger('test');	

});

}
