$(function() {
	$('.thumb a').lightBox({
		txtImage: 'Imagen',
		txtOf: 'de',
		imageLoading:			'/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
		imageBtnPrev:			'/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
		imageBtnNext:			'/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
		imageBtnClose:			'/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
		imageBlank:				'/images/lightbox-blank.gif' 			// (string) Path and the name of a blank image (one pixel)
	});
});

$(document).ready(function(){
	$('.sec-sml img').fadeTo(0,0.70);
	$('.sec-sml img').hover(
		  function () {
		    $(this).fadeTo("fast",1);
		  }, 
		  function () {
			$(this).fadeTo("fast",0.70);
		  }
	)
	$('.sec-sml').hover(
			  function () {
			    $(this).css("background","#F0B400");
			  }, 
			  function () {
			    $(this).css("background","none");
			  }
		)
	/*	
	$('#menu a').hover(
				  function () {
				    $(this).fadeTo("fast",0.80);
				    $(this).fadeTo("fast",1);
				  }, 
				  function () {
					$(this).fadeTo("fast",1);
				  }
			)
	*/
		$('a[href*="contacto"] img').qtip({
			content: '¡CONTACTENOS!',
			// show: 'mouseover',
			// hide: 'mouseout',
			style: { 
				'font-size': '18px', 
				'font-family': 'arial,helvetica,sans-serif',
				border: {
				width: 3,
				radius: 0,
				color: '#FAB500'
			}},
			position: {
				target: 'mouse',
				corner: {
				target: 'center'
				// tooltip: 'center'
			}}
		})
});

