$(document).ready(function() {

/*	hi i'm a mac, and you're a pc. */

	if ($.browser.win)
	{
		// PC guys.

		$('span#switch').toggle(function(){
			$(this).animate({ left: 1 }, 300);
			$('body').removeClass('show-win');
		},function(){
			$(this).animate({ left: 30 }, 300);
			$('body').addClass('show-win');
		});
				
		$('body').addClass('show-win');
	}
	else
	{
	   // Mac guys
		$('span#switch').toggle(function(){
			$(this).animate({ left: 30 }, 300);
			$('body').addClass('show-win');
		},function(){
			$(this).animate({ left: 1 }, 300);
			$('body').removeClass('show-win');
		});
			   
		$('body').removeClass('show-win');
	}

	/* cycle */
	$('div.cycle-pics,div.cycle-pics-12sq').cycle({
		fx: 'fade',
		speed: 'normal',
		timeout: 0,
		next: '#gallery .frame'
	});
	
	/* 隱藏按鈕 */
	$('a.show-mac').click(function(){
		$('body').removeClass('show-win');
		$('#gallery div.cycle-pics').empty().append('<img src="img/gallery/soft-l/DSC_0053.jpg" alt="image" width="538" height="360" /><img src="img/gallery/soft-l/DSC_0054.jpg" alt="image" width="538" height="359" /><img src="img/gallery/soft-m/DSC_0103.jpg" alt="image" width="538" height="359" /><img src="img/gallery/soft-m/DSC_0098.jpg" alt="image" width="538" height="359" /><img src="img/gallery/calendar/DSC_0060.jpg" alt="image" width="538" height="360" />');
	});
		
	$('a.show-windows').click(function(){
		$('body').addClass('show-win');
		$('#gallery div.cycle-pics').empty().append('<img src="img/gallery/hard-l/DSC_0045.jpg" alt="image" width="538" height="358" /><img src="img/gallery/hard-l/DSC_0046.jpg" alt="image" width="538" height="358" /><img src="img/gallery/hard-l/DSC_0089.jpg" alt="image" width="538" height="358" /><img src="img/gallery/hard-l/DSC_0087.jpg" alt="image" width="538" height="359" />');
	});

	/* 下載框框 */
	
	$('a.button span:contains("下載 plugin"),a.button span:contains("下載 hypo plugin")').click(function(){
		$('div#darkside,div#downloading').show();
	});

	$('a.button span:contains("知道了")').click(function(){
		$('div#downloading, div#darkside').hide();
	});
	
	
	/* login and register */

	$('div#register-form').hide();
	
	$('a.show-login-form').click(function(){
		$('div#register-form').hide();
		$('div#login-form').show();
	});

	$('a.show-register-form').click(function(){
		$('div#login-form').hide();
		$('div#register-form').show();
	});
	
	
});
