var j$ = jQuery.noConflict();

j$(function(){
	j$("input:submit").attr("value","");
	j$("input:text").inputValues();
	j$("#fc-phone").mask("(99) 9999-9999",{placeholder: ""});
	j$('a[@rel*=lightbox]').lightBox();
});

// Inputs Focus and Blur (Ex.: $(elements).inputValues();) -----------------------------------------------
j$.fn.inputValues = function() {
	return this.focus(function() {
		if(this.value == this.defaultValue) {
			this.value = "";
		}
	}).blur(function() {
		if(!this.value.length) {
			this.value = this.defaultValue;
		}
	});
};

// Flash
/*
j$(document).ready(function(){
    j$('#video_comment').flash(
        { src: '_videos/example.swf',
          width: 720,
          height: 480 },
        { version: 8 }
    );
});
*/
