jQuery(document).ready( function() {
    jQuery('#showcase').cycle( { 
        timeout: 7000, 
        speed: 3000,
        pause: 1
    });
    jQuery('.showcase_i').mouseover( function() {
      jQuery(this).css('cursor','pointer');
    });
    jQuery('.showcase_i').mouseup( function() {
      location.href = 'index.php?id=2';
    });
});