YCodaSlider 3.0 - Gallery + Imageclick

jQuery(window).ycodacss('ycodaslider-3.0.css');
jQuery(window).bind("load", function() {
    jQuery("#panel-gallery")
    .ycodagallery()
    .ycodaslider({navigator: false, arrows: false});
    
    jQuery("#panel-gallery").find("img").wrap('<a href="#">');
    jQuery("#panel-gallery").find("a").click(function(){
    	jQuery("#panel-gallery").ycodaslider("right");	
    	return false;
    });
});