$(function() {
	$('#banners1').tinycarousel({
		pager: true,
		interval: true,
		intervaltime: 5000
	});
	
	/* => Blog post selector */
	/* ----------------------------------------------*/
	$('#last-posts li').live('click', function(e) {
		if( e.target.nodeName.toLowerCase() != 'a' )
		{
			if( e.ctrlKey )
				window.open($(this).find('h3 a').attr('href'));	
			else 
				window.location.href = $(this).find('h3 a').attr('href');
		}
	});
	
	$('#last-works').tinycarousel({
		display: 1,
		interval: true,
		pager: true
	});
	
});
