$(document).ready(function() { 
	$("form.jqtransform").jqTransform();
	$("a.inline").fancybox({ 'hideOnContentClick': true }); 
	$("a.group").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': false }); 
	$('.boxgrid.slidedown').hover(function(){
		$(".cover", this).stop().animate({top:'109px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({top:'138px'},{queue:false,duration:300});
	});
	$('pre code').each(function() {
		eval($(this).text());
		$('.rotator').cycle({
			fx:     'fade',
			speed:  'slow',
			timeout: 7000,
			next:   '#next',
			prev:   '#prev',
			cleartypeNoBg: 'false'
		});
	});
});

