
	$(function() {
		
		/*$("form.login input")
		.bind("focus.labelFx", function(){
			$(this).prev().hide();
		})
		.bind("blur.labelFx", function(){
			$(this).prev()[!this.value ? "show" : "hide"]();
		})
		.trigger("blur.labelFx");*/
		
		formLabelFx();
		
		$('.slider-logo').cycle({
			fx:			'fade',
			speed:		500,
			timeout:	2500
		});
		
		// ---------------------------------------- focus link
		$(".focus-link .item").css({
			'height' : 60,
			'overflow' : 'hidden',
			'cursor' : 'pointer'
		});

		$(".focus-link .item .more").css({
			'position' : 'absolute',
			'top' : 0,
			'left' : 0
		});

		// hover slide
		$(".focus-link .item").mouseenter(function(){
			$(this).children("div").animate({ 
				'top' : -60
			}, 300 );
		});
		
		// hover slide
		$(".focus-link .item").mouseleave(function(){
			$(this).children("div").animate({ 
				'top' : 0
			}, 300 );
		});


	});
	
	function formLabelFx()
	{
		$("form.login input")
		.bind("focus.labelFx", function(){
			$(this).prev().hide();
		})
		.bind("blur.labelFx", function(){
			$(this).prev()[!this.value ? "show" : "hide"]();
		})
		.trigger("blur.labelFx");
	}
