Drupal.behaviors.webThumbShow = {
    attach: function(context) {
        jQuery('.view-web .views-field-field-image ul').hover(
            function () {
				jQuery(this).find('li.last').fadeIn();
			},
			function () {
				jQuery(this).find('li.last').fadeOut();
			}
    	);
	}
};

Drupal.behaviors.workshopsWrapLink = {
	attach: function(context) {
		jQuery('.view-workshops .views-row').click(
			function() {
				var href = 	jQuery(this).find('a').attr('href');
				window.location = href;
			}
		);
    }
};
;

