// JavaScript Document

$(document).ready(function() {
	
	/*-- Text Replacement --*/
	
	Cufon.replace('.name, .name_2, .module h3, .intro');
	
	/*-- Infobox --*/
	
	$("a.infobox").fancybox({
		'titlePosition' : 'over',
		'centerOnScroll' : 'true',
		'autoScale' : true
	});
	
	/*-- Zoom Image Efect --*/
	
	$(".catalog a").hover(function(){
		$(this).find("img").stop().animate({
			opacity:0.4
		}, 400);
	}, function() {
		$(this).find("img").stop().animate({
		opacity:1
		}, 400);
	});

});



