jQuery(function() {
	jQuery('#featured').cycle({
		fx: 'scrollLeft',
		speed: 700,
		timeout: 5000
	});
	jQuery("p.wp-caption-text").each(function(n) {
		this.innerHTML	= this.innerHTML.replace(new RegExp("{link:([^}]*)}([^{]*){/link}"), "<a href=\"$1\" rel=\"nofollow\" target=\"_blank\">$2</a>");
	});
/*
	WHAT & WHY: setting the social media links
	WHO & WHEN: Cipri on the 6th of February 2012
*/
	jQuery('ul.bookmarks li.twt a:eq(0)').click(function() {
		window.open('http://twitter.com/wandererguides', '_blank');
		return false;
	});
	jQuery('ul.bookmarks li.fcb a:eq(0)').click(function() {
		window.open('http://www.facebook.com/pages/WandererGuides/189438531087377', '_blank');
		return false;
	});

	jQuery('ul.bookmarks li.ldi a:eq(0)').click(function() {
		window.open('http://www.linkedin.com/company/wanderer-guides', '_blank');
		return false;
	});	
	
});

