/* THMS ********************************************************************** */
/*
jQuery('div[class=thm]').bind('mouseover', function(){
alert('asda');
//  $(this).css("background-image", 'url(/gfx/dot_bg_hover.png)');
});

*/

/*
jQuery('div[class=thm]').mouseover(function(){
  $(this).css("background-image", 'url(/gfx/dot_bg_hover.png)');
}).
mouseout(function(){
  $(this).css("background-image", 'url(/gfx/dot_bg.png)');
});
*/

jQuery('div[class=thm]').mouseover(function(){
  $(this).css("background-color", '#95846f');
  $(this).find('a[class=jmeno]').css({'color': '#fff', 'text-decoration': 'underline'});
}).
mouseout(function(){
  $(this).css("background-color", '#d4bc9e');
  $(this).find('a[class=jmeno]').css({'color': '#806221', 'text-decoration': 'none'});
});
