$(document).ready(function(){ 

$("#photo-rotator").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 4000);
$('#photo-rotator').css('height', $('#photo-rotator').height() + 'px');
$('#photo-rotator').css('width', $('#photo-rotator').width() + 'px');
	
$(".search_submit, .search_field, .comments_input, .comments_textarea, .wpcf7-text, .wpcf7 textarea, #language_flags img").hover(function() {
	  $(this).stop().animate({ opacity: "1"}, 200);
	}, function() {
	  $(this).stop().animate({ opacity: "0.5"}, 400);
	});
	
$("#footer_logo img").hover(function() {
	  $(this).stop().animate({ opacity: "1"}, 400);
	}, function() {
	  $(this).stop().animate({ opacity: "0.8"}, 400);
	});

});nn 
