$(document).ready(function(){
	$('#willgattibutton').click(function(event){
		$('#tab_wg').hide();
		$('#mybookslink a').attr({'href': "/wgbooks/"});
		$('#bg_df_lines').fadeOut(50, function () {
			$('#bg_df_glow').fadeOut(50, function () {
				$('body').animate( { 'backgroundColor': '#ffffff' },100, 'linear', function () {
					$('#bg_wg_lines').fadeIn();
					$('#tab_df').fadeIn();
					$("link[title=skin]").attr({'href' : "http://willgatti.co.uk/wp-content/themes/wgdf/wg.css"});
				});
			});
		});
		$.cookie('site', 'wg',{path:'/'});
		return false;
	});
	$('#danielfinnbutton').click(function(event){
		$('#tab_df').hide();
		$('#mybookslink a').attr({'href': "/dfbooks/"});
		$('#bg_wg_lines').fadeOut(50, function() {
			$('body').animate( { 'backgroundColor': '#0c241e' },100, 'linear', function () {
				$('#bg_df_glow').fadeIn();
				$('#bg_df_lines').fadeIn();
				$('#tab_wg').fadeIn();
				$("link[title=skin]").attr({'href' : "http://willgatti.co.uk/wp-content/themes/wgdf/df.css"});
			});
		});	
		$.cookie('site', 'df', {path:'/'});
		return false;
	});
});