
$(document).ready(function() {
//update main image with thumbnail
$('#thumb .thumbNail').click(function() {
$('.cropme').html('<img src="' + $(this).attr('bigUrl') + '">');
$('.cropme').hide();
$('.cropme').show('slow');
$('.caption').html($(this).attr('caption'));
});
//highlight the thumbnails on mouse over
$('.thumbNail').hover(function() {
$(this).removeClass('thumbNail');
$(this).addClass('thumbNailHover'); 
}, function() {
$(this).removeClass('thumbNailHover');
$(this).addClass('thumbNail'); 
})
});
$(document).ready(function() {
var postionTooltip = function(event) {
var tPosX = event.pageX - 5;
var tPosY = event.pageY + 20;
$('div.tooltip').css({top: tPosY, left: tPosX});
};
var showTooltip = function(even) {
$('div.tooltip').remove();
}
});
