window.addEvent('domready', function(){

	// Main links
	$$('#topbar ul li a').addEvent('mouseenter', function(){
		if(!this.hasClass('selected')){
			$('content-title').set('text', '').setStyle('opacity', 0);
			$('content-title').set('text', this.get('title')).tween('opacity', 1);
		}
	});
	$$('#topbar ul li a').addEvent('mouseleave', function(){
		if(!this.hasClass('selected')){
			$('content-title').set('text', '').setStyle('opacity', 0);
			$('content-title').set('text', $('content-title').get('title')).tween('opacity', 1);
		}
	});
	
	// About box
	$('aboutme').addEvent('click', function(e){
		e.stop();
		$('about-box').set('tween', {
			duration: 500,
			transition: 'cubic:out'
		});
		if($('about-box').getStyle('top').toInt() > -210){
			$('about-box').tween('top', '-210');
		}else{
			$('about-box').tween('top', '40px');
		}
	});

	// Social icons
	$$('#footer ul li').each(function(el){
		el.addEvent('mouseenter', function(){
			el.set('tween', {duration: 130}).tween('margin-top', '-3px');
		});
		el.addEvent('mouseleave', function(){
			el.set('tween', {duration: 130}).tween('margin-top', '0px');
		});
	});
	
	
	// Category links
	$$('#navbar ul li a').each(function(el){
		el.addEvent('mouseenter', function(){
			el.set('tween', {duration: 300}).tween('background-color', '#111');
		});
		el.addEvent('mouseleave', function(){
			el.set('tween', {duration: 300}).tween('background-color', '#222');
		});
	});
	
	// Search
	$('s').addEvent('focus', function(){
		if($('s').get('value') == 'Search...'){
			$('s').set('value', '');
		}
		$('s').setStyle('color', '#333');
	});
	$('s').addEvent('blur', function(){
		if($('s').get('value') == ''){
			$('s').set('value', 'Search...');
		}
		$('s').setStyle('color', '#aaa');
	});
	
	// Header
	if(Cookie.read('startup') !== 'true'){
		$('header-inner').setStyle('opacity', .1);
		$('header-inner-imgs').setStyle('display', 'none');
		(function(){
			$('header-inner').set('tween', {duration: 500}).tween('opacity', 1);
			Cookie.write('startup', 'true', {duration: 1, path: '/'});
			$('header-inner-imgs').setStyle('display', 'inline');
		}).delay(1500);
	}
	(function(){
		var tea = function(){
			$('steam').setStyles({
				'top': '50px',
				'right': '13px'
			});
			$('steam').set('tween', {duration: 500}).tween('opacity', 1);
			(function(){
				new Fx.Morph('steam', {duration: 1500}).start({
					'top': '35px',
					'right': '-5px',
					'opacity': 0
				});
			}).delay(500);
		};
		tea.periodical(2500);
		tea();
	}).delay(1500);
	
	// Cerabox
	var box = new CeraBox();
	box.addItems('.entry-content img !> a, .entry-content a[href=^http://www.youtube.com]');
	
	// Syntax highlighter
	SyntaxHighlighter.all();
	
});

