/* 
Name:			contact.js
Description: 	Contact Form
Author:			PBP - pbp@firedune.com.ar
*/

$(function(){	
	var contact_options = {
		autoOpen: false,
		bgiframe: false,
		closeOnEscape: true,
		width: 600,
		height: 450,
		show: 'blind',
		hide: 'blind',
		modal: true
	};
	
	var accordion_options = {
		header: "h3",
		autoHeight: false,
		collapsible: false
	};
	
	/*
	$("#loading").ajaxStart(function(){
		$(this).show();
	});	
	$("#loading").ajaxStop(function(){
		$(this).hide();
	});
	*/
	$('#accordion_faq').accordion(accordion_options);
	
	$('#dialog_contact').dialog(contact_options);
	//$('#contact').hide();
	
	$("#dialog_contact").bind("keypress", function(e) {
		//alert(e.keyCode);
		if (e.keyCode == 13) SendContact();
	});

	$('#contact').click(function() {
		$('#dialog_contact').dialog("open");
	});
	$('#contact2').click(function() {
		$('#dialog_contact').dialog("open");
	});
	
	$('#screenshots a').lightBox({
		containerResizeSpeed: 180,
		txtImage: 'Image',
		txtOf: 'of'
   });
    $('a.lightbox').lightBox({
		containerResizeSpeed: 180,
		txtImage: 'Image',
		txtOf: 'of'
   }); // Select all links with lightbox class

});

