/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
jQuery(document).ready(function()
{
    jQuery("#slider").easySlider({ auto: true, continuous: true, speed: 1000, pause: 3000});
    jQuery("#prevBtn").hide();
    jQuery("#nextBtn").hide();
    jQuery("#slider").hover(function(){$("#prevBtn").show();$("#nextBtn").show();}, function() {$("#prevBtn").hide();$("#nextBtn").hide();});
    jQuery("#prevBtn").hover(function(){$("#prevBtn").show();$("#nextBtn").show();});
    jQuery("#nextBtn").hover(function(){$("#prevBtn").show();$("#nextBtn").show();});
});



