//-------------------------------------------------------------------------------------
//
// Autor: Carlos Martínez
// Email: carlos.martinez@fusiona.cl
// Descripción:
//	Carrusel de noticias sobree el footer
//
// Última modificación: 2010-07-24 - Carlos Martínez <carlos.martinez@fusiona.cl>
//
//-------------------------------------------------------------------------------------

var carruselNoticias;
jQuery(document).ready(function() {
	// Carrusel noticias
	carruselNoticias = $('#carrusel_part_b').scrollable({
		speed: 500,
		size: 2,
		circular: true
	})
	.autoscroll({
		autoplay: true,
		interval: 10000,
		api: true
	})
	
	
	jQuery('.boton_editar_noticias').click(function() {
	
	  jQuery.fancybox({
				titleShow: false,
				type: 'iframe',
				width:800,
				height:480,
				href: '/admin/admin_home_editar_carrusel.php'
			});


});
});


function checkLinkType(obj, type, width, height)
{
	if (width==undefined) width = false;
	if (height == undefined) height = false;
	if (type == 0)
	{
		return true;
	}
	else if(type == 1)
	{
		$(obj).attr('target','_blank');
		return true;
	}
	else if(type == 2)
	{
		if (width && height)
		{
			/*
			$.fancybox({
				titleShow: false,
				type: 'iframe',
				href: $(this).attr('href')
			});
			*/

			var __url = $(obj).attr('href');
			if (__url == 'http:///images/bono_caliente_yaris.gif')
			{
				var laUrl = __url.replace('http://','');
				$.colorboxpromo({href: laUrl });
			}
			else
			{
				$.colorbox({width:width+"px", height:height+"px", iframe:true,scrolling:false,inline:true,href:$(obj).attr('href') });
			}
			return false;
		}
		else
		{
			$(obj).attr('target','_blank');
			return true;
		}
	}
}

