/* this is javascript include file to demonstrate how to include custom javascript (jquery) functions
* to the drupal theme
*/
$(function(){
/*alert('Welcome to Generic theme! Please remove me to show, that you understand how to handle drupal_add_js() function');*/
});

$(document).ready(function() { 
  mark_tooltip();
});

function mark_tooltip() {
	$(".tooltip").tooltip({tooltipcontentclass:"tooltip-content"});
}
