// default

$(function(){
	
	$('.hide').hide();

	$('#nav>ul>li').mouseover(function(){ $(this).children('ul').css({display:'block'}); $(this).children('ul').children('div').height($(this).children('ul').height());}).mouseout(function(){ $(this).children('ul').css({display:'none'})});
	
	$(document).pngFix();
	
	// calendar
	$.fn.qtip.styles.cal = { 
	   width: 280,
	   textAlign: 'left',
	   border: {
		  width: 1,
		  radius: 2,
		  color: '#cccccc'
	   },
	   tip: 'bottomLeft',
	   name: 'light'
	}
	
	$('.event>a').each(function(){
		$(this).qtip({
		  content: $(this).attr('meta'),
		  position: {corner: {target: 'rightTop',tooltip: 'bottomLeft'}},
		  style: 'cal'
		});
	});
	
	// photo gallery
	$('.photos>li>a').fancybox();
	
	// contact
	$('#userForm').ajaxForm({
        beforeSubmit:  	function(formData, form, options){
							$('#error').slideUp();
							return true;
						}, 
        success:       	function(data, status, xhr, form){
							if(data.success == true){
								$('#userForm').slideUp('slow', function(){ $('#thankYou').html(data.thank_you).slideDown(); });
							} else {
								if(data.error != null){
									tempText = '';
									for(var i in data.error){
										tempText += data.error[i] + '<br />';
									}
									$('#error').html(tempText).slideDown();
								}
							}
						},
		url:			'/ajax.php',
		type:			'post',
		dataType:		'json'
	});
	
});
