// JavaScript by Gills Lopes (gills@gills.com.br)
var $jq = jQuery.noConflict();

$jq('document').ready(function(){
							   
  // Links transparentes
  $jq('a img, input[type="submit"]').mouseover(function() {
	$jq(this).css('opacity', .6);
	}).mouseout(function() {
	$jq(this).css('opacity', 1);
  });
  
});
