$(document).ready(function(){

var i = "1";
var j = "1";

var $container = $('#slideshow1').cycle({ 
    delay:  1000, 
    speed:  500,
    prev:   '#prev', 
    next:   '#next'    
}); 



$(".box-5 img").hover(function(){
 
  $(this).fadeTo(50, 0.5);
  $(this).fadeTo(200, 1);
  
  title_text = this.title;  
  
  // $container.cycle(title_text); 
  
});



$("img").pngfix();

});
