	$('#projects,#exp,#contact,#about,#stage div').hide();
		
		$('#stage div img, #contact div, .dragit').draggable({stack: 'img, li,#contact,aside p'});
		
		$('#stage div img,.dragit,#contact div,#about iframe').each(function () {
			var ranN = Math.floor(Math.random()*60);
			$(this).css("top", ranN+'px').css("left", 20+ranN+'px');
		});
				
		$('h1').click(function() {
			$('#stage div,#projects,#contact,#exp').fadeOut();$('#about').hide();
			$('#welcome').fadeIn();
			});
		$('#tribtn').click(function() {
			$('#stage div').not('#tritextura').fadeOut();
			$('#tritextura').fadeIn();
			});
		$('#lucbtn').click(function() {
			$('#stage div').not('#lucifers').fadeOut();
			$('#lucifers').fadeIn();
			});
		$('#yolkbtn').click(function() {
			$('#stage div').not('#yolkbtn').fadeOut();
			$('#yolk').fadeIn();
			});
		$('#tcbtn').click(function() {
			$('#stage div').not('#tc').fadeOut();
			$('#tc').fadeIn();
			});
		$('#50dbtn').click(function() {
			$('#stage div').not('#50d').fadeOut();
			$('#50d').fadeIn();
			});
		$('#qrbtn').click(function() {
			$('#stage div').not('#qr').fadeOut();
			$('#qr').fadeIn();
			});
		$('#phobtn').click(function() {
			$('#stage div').not('#pho').fadeOut();
			$('#pho').fadeIn();
			});
	
	// project btn
		$('#projbtn').click(
		function() {
			$('#contact,#stage div,#exp,#welcome').fadeOut();
			$('#about').hide();
			$('#projects').fadeIn();
			$('#stage').show();
			});
	// experiments btn
		$('#expbtn').click(
		function() {
			$('#projects,#contact,#stage div,#welcome').fadeOut();
			$('#about').hide();
			$('#exp').fadeIn();
			});	
	// contact btn
		$('#contactbtn').click(
		function() {
			$('#stage div,#projects,#exp,#welcome').fadeOut();
			$('#about').hide();
			$('#contact').fadeIn();
			});
	// about btn
		$('#aboutbtn').click(
		function() {
			$('#stage div,#projects,#exp,#contact,#welcome').fadeOut();
			$('#about').show();
			});
