$(function(){
	$("a[rel=pic]").fancybox();	
	$("#pikame").PikaChoose({carousel:true});
	$("a[rel=video]").click(function() {
		$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'			: 680,
				'height'		: 495,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
 				'swf'			: {
  			   	        'wmode' : 'transparent',
		      'allowfullscreen' : 'true'
				}
			});
		return false;
	});
	
	$("#songs").click(function(){
		
	});
	$(".validate").validate();
	$("#cadastro").validate({
		rules: {
			nome: "required",
			senha: {
				required: true,
				minlength: 5
			},
			confsenha: {
				required: true,
				
				minlength: 5
			},
			email: {
				required: true,
				email: true
			},
			celular: "required"
		}
	});
    $('input:text').setMask();
});
