jQuery.noConflict();

jQuery(document).ready(function() {

	
	jQuery("div.group").fancybox({
		'overlayShow'			: false,
		'padding'				: '7',
		'imageScale'			: false,
		'centerOnScroll'		: false,
		'callbackOnStart' 		: function(){
			//alert('blah');
		},
		'callbackBeforeChange'		: function(target,opts){

			opts.frameWidth = $(target).width();
			opts.frameHeight = $(target).height();
			
		}
	});
	
	jQuery('#imagebank div.picture').each(function(){
		
		var elem = jQuery(this).find('div.info')[0];
		
		jQuery(this).hover(function(){
			jQuery(elem).animate({'marginTop': '-78px'},{ queue:false, duration:300 });
			jQuery(this).css({ 'background': 'top left no-repeat url(/fancybox/imagebank-h.png)' });
		},
		function(){
			jQuery(elem).animate({'marginTop': '10px'},{ queue:false, duration:300 });
			jQuery(this).css({ 'background': 'top left no-repeat url(/fancybox/imagebank-n.png)' });
		});
		
	});

});