$(window).load(function(){
	$('.prods .description').each(function(){
		$(this).css('opacity', 0);
		$(this).css('width', $(this).siblings('img').width());
		$(this).parent().css('width', $(this).siblings('img').width());
		$(this).css('display', 'block');
	});
	
	$('.prods ').hover(function(){
		$(this).children('.description').stop().fadeTo(500, 0.9);
	},function(){
		$(this).children('.description').stop().fadeTo(500, 0);
	});
	
});

$().ready(function() {
	$('#coda-slider-1').codaSlider();
});

/*$(document).ready(function() {
	
	$("a#single_image").fancybox();
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});
	
	$("a.group").fancybox({
		'overlayShow'	:	true
	});
	
});*/
