// Document Ready
$(document).ready(function() {

// Sliding Login Panel
	$('#formcontainer').hide();
	$('a#toggle').click(function() {
		$('#formcontainer').slideToggle('slow');
		return false;
	});

// Login Error Message
	$('#loginbutton').click ( function() {
		$('#loginbutton').hide();
		$('<label id="error">Lo sentimos, parece ser que no es un cliente registrado. Intentelo denuevo...</label>')
		.insertAfter( $(this) )
		.fadeIn('slow')
		.animate({opacity: 1.0}, 5000)
		.fadeOut('slow', function() {
			$(this).remove();
			$('#loginbutton').show();
		});
	});

// Navigation Rollover Effect
	$('#content ol a').mouseover(function() {
		$(this)
		.fadeTo("1000", 0.3);
	});
	
	$('#content ol a').mouseout(function() {
		$(this)
		.fadeTo("1000", 1);
	});

// Portfolio Lightbox
	$(function() {
	$('a[@rel*=portfolio]').lightBox();
	});
	
//End Document Ready
});