$(document).ready( function( ){

	$("#main").dropShadow( {
		left    : 0,
		top     : 0,
		opacity : 0.4,
		blur	: 4
	} );
	
//	$("#header .menu li a").corner( { 
//			  tl: { radius: 16 },
//			  tr: { radius: 16 },
//			  bl: false,
//			  br: false,
//			  antiAlias: true
//	} );
	$(".button").corner( {
			  tl: { radius: 5 },
			  tr: { radius: 5 },
			  bl: { radius: 5 },
			  br: { radius: 5 },
			  antiAlias: true
	});
	
	$("#form-contact [@id^=input]").focus( function(){
		if( $(this).val( ) == $(this).attr( "title" ) )
		{
			$(this).val( '' );
		}
	});
	$("#form-contact [@id^=input]").blur( function(){
		if( $(this).val( ) == '' )
		{
			$(this).val( $(this).attr( "title" ) );
		}
	});
	
	$("#form-contact").submit(function(){
		var fields = {};
		$("#form-contact [@id^=input]").each(function(){
			fields[$(this).attr( "name" )] = $(this).val( );
		});
		
		$.post( "contact.php",
		  fields,
		  function(msg){
		  	$("#message").html( msg );
		  }
		);
		return false;
	});

	
});
