﻿$(function() {
	$("#accordion").accordion({ header: "h3" });
	$("#accordion2").accordion({ header: "h3" });
	//Clycle
	$('#CycleParceiros').cycle({
		fx:'fade',
		random: 1,
		timeout: 5000,
		speed: 1000
	});
	$('#CycleClientes').cycle({
		fx:'fade',
		random: 1,
		timeout: 5000,
		speed: 1000

	});
		//FROMTI
		$('#1').click(function(e) {
			e.preventDefault();
			var $this = $(this);
			var horizontalPadding = 0;
			var verticalPadding = 0;
	        $('<iframe id="externalSite" class="externalSite" src="' + this.href + '" />').dialog({
	            title: ($this.attr('title')) ? $this.attr('title') : 'Intechne / Fromti',
	            autoOpen: true,
	            width: 960,
	            height: 620,
	            modal: true,
	            resizable: false,
				autoResize: true,
	            overlay: {
	                opacity: 0.5,
	                background: "black"
	            }
	        }).width(960 - horizontalPadding).height(620 - verticalPadding);	        
		});
		//WEBPONTO - Faros
		$('#2').click(function(e) {
			e.preventDefault();
			var $this = $(this);
			var horizontalPadding = 0;
			var verticalPadding = 0;
	        $('<iframe id="externalSite" class="externalSite" src="' + this.href + '" frameborder="0" scrolling="NO" />').dialog({
	            title: ($this.attr('title')) ? $this.attr('title') : 'Intechne / WebPonto',
	            autoOpen: true,
	            width: 960,
	            height: 600,
	            modal: true,
	            resizable: false,
				autoResize: true,
	            overlay: {
	                opacity: 0.5,
	                background: "black"
	            }
	        }).width(960 - horizontalPadding).height(600 - verticalPadding);	        
		});
});
