$(document).ready(function(){

	$('#news-latest-container').cycle({ 
	    fx:     	'scrollUp',
		timeout:	5000,
		speed:		750,
		pause:   	1, 
	    delay:  	-3000 
	});

	$('#teaserArea > a').tooltip({ 
	    bodyHandler: function() { 
	        return $($(this).attr("rel")).html(); 
	    }, 
		extraClass: "pretty fancy", 
		showBody: " - ", 
	    track: true,
		delay: 100,
		showURL: false,
		fixPNG: true
	});
	
	$('.giftItem').tooltip({ 
	    bodyHandler: function() { 
	        return $($(this).attr("rel")).html(); 
	    }, 
		extraClass: "pretty fancy", 
	    showBody: " - ", 
		track: true,
		delay: 100,
		showURL: false,
		fixPNG: true
	});
	
	//$('.tooltip').bigframe();
});