jQuery.noConflict();
jQuery(function() {
	jQuery('.slide-one img:gt(0)').hide();
	setInterval(function(){
      jQuery('.slide-one :first-child').fadeOut("slow")
         .next('img').fadeIn("slow")
         .end().appendTo('.slide-one');}, 
      6000);
});
jQuery(document).ready(function(){
            jQuery('#gallery').galleryView({
	           show_overlays:true,
                show_filmstrip_nav:false,
                frame_gap: 1,
                panel_width:400,
                panel_height:320,
                frame_width: 132,
                frame_height: 80,
                pointer_size: 0,
                panel_scale:'crop',
                pause_on_hover:true
     });
    })
