$(document).ready(function() {
	
	// Search
	var formHeight = '36px';
	$('#search-form #search').slideUp(0);
	
	$('#search-form p a').css('cursor', 'pointer').click(function() {
		$(this).parent().siblings('form').css('height', formHeight).slideToggle(500);
		return false;
	}).hover(function() {
		$(this).css('background', '#9ebd1e');
	}, function() {
		$(this).css('background', '#b2d134');
	});
	
	// For link love
	$('#link-love div').fadeTo(0, 0);
	
	$('#link-love a').hover(function() {
		$(this).parent().stop().fadeTo(750, 1);
		$('#link-love h4').stop().css('left', '135px').css('width', '0').animate({ left: 0, width: '162px' }, 750);
	}, function() {
		$(this).parent().stop().fadeTo(750, 0);					
		$('#link-love h4').stop().animate({ left: '135px', width: '0' }, 750);
	});
	
});
