// JavaScript Document
	
$(document).ready(function() {
	$('.rotator').cycle({ 
	fx:     'fade', 
    speed:   1000, 
    timeout: 7000, 
    next:   '.rotator', 
    pause:   0 
	});
//fader
$(".fader").hover(function(){
    $(this).animate({opacity: "0.6"}, "fast")
      }, function() {
	//	 $(this).animate( { width:"151px" }, 100 );
	 $(this).animate({opacity: "1.0"}, "fast")
    });
});

