$(document).ready(function() {
	var tabs = $('div#theslider > div');
	var links = $('div#theslider ul#slider-list li a');
	tabs.hide().filter(':first').show();
	
	$('div#theslider ul#slider-list li a').hover(function() {
		tabs.hide();
		tabs.filter('#' + this.id).fadeIn();
		return true;
	});
});
