var $imgprv = jQuery.noConflict();
$imgprv(document).ready(function() {
	$imgprv('.pic a').imgPreview({
    containerID: 'imgPreviewWithStyles',
    srcAttr: 'rel',
    imgCSS: {
        
    }, 
    onShow: function(link){
    	/* added by vincio */
        $imgprv('<span>'+$imgprv(link).find("img").attr("alt")+'</span>').appendTo(this);
    },
    onHide: function(link){
        $imgprv('span', this).remove();
    }
	});
	$imgprv('ul#photoslide').innerfade({
		speed: 2000,
		timeout: 7000,
		type: 'random_start',
		containerheight: '420px'
	});		
});

function setImageGallery(url) {	
	$imgprv('#photoset-img').find("a").attr("href",url);
}
