// JavaScript Document
$(document).ready(function() {
	$("#slider").easySlider();
	$("#slider2").easySlider();
	
	$("#formulario").validate();
	// Redondeo algunos div
	$('.redondear').corner();
	$('input[title!=""]').hint();
	$('textarea[title!=""]').hint();
	
	///// CAJA DE FOTOS y VIDEOS
	$(".boxfoto").colorbox();
	$(".boxvideo").colorbox({iframe:true, width:650, height:550});
	$(".boxiframe").colorbox({width:"80%", height:"80%", iframe:true});
	$(".boxinline").colorbox({width:"50%", inline:true, href:"#inline_example1"});
	$("a[rel='slidewhow']").colorbox({slideshow:true});

	$(".ampliar").click(function () { 
		$("#fotoampliada").attr({ src: $(this).attr("href") });
		$("#linkfotoampliada").attr({ href: $(this).attr("href") });
		return false;
	});

});



