$(document).ready(function()
{
    $("#formContact").validate(
	{
		// Define as regras
		rules:
		{
			nome:
			{
				required: true
			},
			email:
			{
				required: true,
				email: true
			},
			assunto:
			{
				required: true
			},
			mensagem:
			{
				required: true
			}
		},
		// Define as mensagens de erro para cada regra
		messages:
		{
			nome:     {required:""},
			email:    {required:"", email:""},
			assunto:  {required:""},
			mensagem: {required:"",url:""}
		}
	});

	$('#cbox').jflickrfeed(
	{
		limit: 25,
		qstrings:
		{
			id: '48378853@N08'
		},
		itemTemplate: '<div>'+
						'<a rel="colorbox" href="{{image}}" title="{{title}}">' +
							'<img src="{{image_s}}" alt="{{title}}" />' +
						'</a>' +
					  '</div>'
	}, function(data)
	{
		$('#cbox a').colorbox();
	});

	$('#outros div').click(function()
	{
	    var titulo   = $('input', this).val();
        var code     = this.id;
	    var conteudo = '<iframe width="669" height="392" src="http://www.youtube.com/embed/'+ code +'?rel=0&amp;hd=1" frameborder="0" allowfullscreen></iframe>';

	    $('html, body').animate(
	    {
            scrollTop: 0
        }, 800, function()
        {
            $('#player').animate(
    		{
    			height: 0
    		}, 500, function()
    		{
    			$('#player').html('');

    			$('#player').animate(
        		{
        			height: '392px'
        		}, 500, function()
        		{
        		    $('#player').html(conteudo);
                });
    		});

    		$('#tituloPortifolio').animate(
    		{
    			opacity: 0
    		}, 500, function()
    		{
    		    $('#tituloPortifolio').html(titulo);
    		    $('#tituloPortifolio').animate(
        		{
        			opacity: 1
        		}, 500);
            });
        });
    });
});
