/* local defined functions */

 jQuery(document).ready(function($){
	$(".trans").fadeTo("fast", 0.0); 
	$(".trans").hover(function(){
		$(this).fadeTo("slow", 0.4); },
			function(){
		$(this).fadeTo("fast", 0.0); });
	$(".trans").click(function(){
		$(this).fadeTo("fast", 1.0); }); 
	/* greybox begin */
        $(".greybox").click(function(){
          var t = this.id || this.title || $(this).text() || this.href;
          GB_show(t,this.href,470,600);
          return false;
        });
	/* greybox end */
 });
      var GB_ANIMATION = true;
