// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults


$(document).ready(function() {
  $('.pictos').hover(
	function() {
    	$('.tooltip-pictos').fadeIn(300);
  	},

  function() {   
	  	$('.tooltip-pictos').fadeOut(100);
      	}
  );
});

$(document).ready(function() {
  $('.pictos-large').hover(
	function() {
    	$('.tooltip-pictos').fadeIn(300);
  	},

  function() {
      $('.tooltip-pictos').fadeOut(100);
      }
  );
});

$(function() {
	// Use this example, or...
	$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
});
