/*
document.write ('<script type="text/javascript" src="scripts/moo.js"></script>');
document.write ('<script type="text/javascript" src="scripts/an7effects.js"></script>');


document.write ('<script type="text/javascript" src="scripts/formcheck/formcheck.js"></script>');
document.write ('<script type="text/javascript" src="scripts/lightbox.js"></script>');
*/
//document.write ('<script type="text/javascript" src="scripts/jquery-1.4.2.min.js"></script>');
document.write ('<link rel="stylesheet" type="text/css" href="scripts/fancybox/jquery.fancybox-1.3.1.css.php" media="screen" />');
document.write ('<script type="text/javascript" src="scripts/fancybox/jquery.fancybox-1.3.1.pack.js"></script>');


$(function () {
	$('a[rel*=lightbox]').fancybox({
		'titlePosition'		: 'inside',
		'overlayColor' 		: '#000',
		'overlayOpacity'	: '0.8',
		'titleShow'			: true,
		 'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over"><b>' + title + '</b><span style="float:right; color:#626262;">Image ' +  (currentIndex + 1) + ' of ' + currentArray.length + '</span></span>';
		}
	});

	//<span><a href="javascript:;" onclick="$.fancybox.close();"><img src="img/closelabel.png" /></a></span>

	// fade links
	$("a").fadeTo("fast", 0.7);
	$("a").mouseenter(function(){
		$(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
	}).mouseleave(function(){
		$(this).fadeTo("fast", 0.7); // This should set the opacity back to 60% on mouseout
	});

	$(".item_container img").lazyload({
		placeholder : "img/loading.gif",
		effect : "fadeIn"
	});
	$(".mb img").lazyload({
		placeholder : "img/loading.gif",
		effect : "fadeIn"
	});

});

