// JavaScript Document
$(function() {
 
	//HIDE THE DIVS ON PAGE LOAD	
	$('a.accordionContent').hide();
	
	if (!Modernizr.input.placeholder) {
		$('input[placeholder]').placeholder({ placeholderTextColour: "#4D4D4D" });
	}
	
	$('.preview-producto .detalle h4').truncateLines({lines:1});
	$('.preview-producto .detalle p').truncateLines({lines:3});
	
	$('.consultar-producto').colorbox({
		iframe: true,
		opacity: 0.7,
		innerWidth: 700,
		innerHeight: 400	
	});
	
	$('.contactar-asistente').colorbox({
		iframe: true,
		opacity: 0.7,
		innerWidth: 770,
		innerHeight: 330
	});
	
	$('.curriculum').colorbox({
		iframe: true,
		opacity: 0.7,
		innerWidth: 770,
		innerHeight: 330
	});
	
	/*$('.ver-catalogo').colorbox({
		iframe: true,
		opacity: 0.7,
		innerWidth: 900,
		//innerHeight: 1370,
		onComplete: function() {
			$('#cboxLoadedContent').addClass('mailing');
			$('#cboxClose').addClass('mailing');
		},
		onClosed: function() {
			$('#cboxLoadedContent').removeClass('mailing');
			$('#cboxClose').removeClass('mailing');		
		}
	});*/
	
});
