jQuery(function() {

// OPACITY OF BUTTON SET TO 50%

jQuery(".post img").css("opacity","1.0");

 

// ON MOUSE OVER

jQuery(".post img").hover(function () {

 

// SET OPACITY TO 100%

jQuery(this).stop().animate({

opacity: 0.8

}, "fast");

},

 
// ON MOUSE OUT
function () {

 

// SET OPACITY BACK TO 50%

jQuery(this).stop().animate({

opacity: 1

}, "fast");

});

});


$(document).ready(function() { 
   alert('JQUERY FUNKER SOM DET SKAL'); 
}); 
