Drupalize image paths

by timmah

HTML

<div class="doublewide nomargintop">
		<div class="w-narrow left marginright padbottom padtop"><img src="_lib/img/MDpressclub170209_200px.jpg" alt="" /></div>
		<p>The National Centre for Indigenous Studies (NCIS) was established in January 2005. It is a stand-alone Centre within the <a href="http://about.anu.edu.au/governance-structure/university-structure">ANU organisational structure</a> and is directed by <a href="/people/dodson.php">Professor Mick Dodson AM</a>.</p>
		<p>The <a href="/about_us.php#charter">Centre's charter</a> is for NCIS to be recognised as a leading academic institute for inter-disciplinary research in fields that are of relevance to Indigenous Australians, especially in relation to the enrichment of scholarly and public understandings of Australian Indigenous cultures and histories. NCIS works collaboratively with ANU research and teaching centres that are of relevance to Indigenous studies. These include the <a href="http://caepr.anu.edu.au/">Centre for Aboriginal Economic Policy Research (CAEPR)</a>, the <a href="http://acih.anu.edu.au/">Australian Centre for Indigenous History</a>, the <a href="http://archanth.anu.edu.au/">School of Archaeology and Anthropology</a>, and the <a href="http://music.anu.edu.au/">School of Music</a>.</p>

JavaScript

//  This script replaces image paths with Drupal equivalents, 
//  assuming files are stored under /sites/default/files

$('img').each(function() {
	var $this  = $(this),
		$parts = $this.attr('src').split('/'),
		$file = $parts[$parts.length -1];
/*
	console.log('$parts: ' + $parts);
	console.log('$file: ' + $file);
*/	

	$this.attr('src', '/sites/default/files/' + $file);
});