
$(document).ready(function(){
	/*$('#container .main .left').corners("20px");
	$('#container .main .right').corners("20px")*/
	$('#container .header .logo').fadeIn('slow');
$('#container .main .nav').fadeIn('slow');
	$('#container .main .right').fadeIn('slow');
	$('#container .main .left').fadeIn('slow');
	
	$('input[type=text], textarea').blur(function(){
		if(this.value == ""){
			this.value = this.name+".";
            if(this.type == "password"){
            	this.type="text";
            }
		}
		this.style.color = "#747474";
		this.style.background = "#FFF";
		this.style.borderColor = "#747474";
	});
	
	$('input[type=text], textarea').click(function(){
		if(this.value == this.name+"."){
			this.value = "";
		}
		if(this.name == "password" || this.name == "password2"){
			this.type="password";
		}
		this.style.color = "#000";
		this.style.background = "#FFF";
		this.style.borderColor = "#000";
	});
    
    $('.portfolio').lightBox();
});