jQuery(function($) {
	
	$('#wrap').bgSwitcher({
		images: ['../images/bg_blaf/image.jpg', 1, 15],
		interval: 5000,
		fadeSpeed: 4000
	}, true);
	
});

$(document).ready(function(){
						   $(".over").fadeTo("slow", 1.0); 
						   $(".over").hover(function(){
						   $(this).fadeTo("slow", 0.6); 
						   },function(){
						   $(this).fadeTo("slow", 1.0); 
						   });
						   });



