$(document).ready(function() {
	// Activate the scroller
	window.api = $(".scrollable").scrollable().circular().autoscroll({ 
    	autoplay: true, 
		speed: 2000,
		api: true
	});
	
	$('#gregCard').mouseover(function() {
		$('#gregCard').attr('src', 'img/contact/greg_front.jpg');
	})
	
	$('#gregCard').mouseout(function() {
		$('#gregCard').attr('src', 'img/contact/greg_back.jpg');
	})
	
	$("ul.tabs").tabs("div.panes > div");

	$('a').each(function() {
		var href = $(this).attr('href');
		var html = $(this).html();
		if (typeof(href) != 'undefined') {
			href = href.replace('abcdefg', '@lu');
			html = html.replace('abcdefg', '@lu');
			//console.log(href, html);
			$(this).attr('href', href);
			$(this).html(html);
		}
	});
});
