/* reinhardplank.com js */

jQuery(document).ready(function(){





jQuery('#blog li.post, #single .post').each(function(){
	var thisImg = jQuery(this).find('img').attr('src');
	//alert(thisImg);
	if (thisImg != undefined) {
		thisImg = thisImg.replace("/themes/handcrafted/functions/scripts/timthumb.php?src=wp-content","");
		thisImg = thisImg.replace("&w=300&h=300&zc=1","");
		thisImg = thisImg.replace("&w=960&h=0&zc=1","")
	
		jQuery(this).find('a.image').attr('href', thisImg);
		jQuery(this).find('a.image').attr('target', '_blank');
		jQuery(this).find('a.image').addClass('thickbox');
	}
})






jQuery('.rp_sociallinks').appendTo('#footer .column-1');
jQuery('.rp_search').appendTo('#footer .column-3');




jQuery('.page-title').appendTo('#header');


/*
jQuery('#slideshow > a').remove();
jQuery('#videohome').prependTo('#slideshow');
*/







}); // jQuery();	
