$(function(){
var pages = {'home':'#547274', 'about-us':'#6a75b3','packages':'#004483', 'social':'#662e91','my-work':'#793657','contact-me':'#cb4546'};
		   
    $("a[rel^='prettyPhoto']").prettyPhoto();
	$('#menubar ul a').click(function(e){
		e.preventDefault();
		var srcTarget = $(e.target).parents('a');
		var $sel = srcTarget;
			if($sel.parents('li').hasClass('selected')){
				return false;	
			}
		$('#menubar li.selected').removeClass('selected');
		$sel.parents('li').addClass('selected');
		var $start = $sel.attr('rel');
		$('#'+$start).css('display','block').animate({'top':'-300px'},500,function(){
			$(this).css('z-index',501).animate({'top':0},500,function(){
				$('div.page.selected').removeClass('selected').css('z-index','auto').css('display','none');
				$(this).addClass('selected').css('z-index',500);
				$('body').animate({'backgroundColor':pages[$start]},2000,"easeInOutQuart");
			});
		});	
	});
	$('.showcase .img').hover(function(){
		$(this).find('> img').animate({'opacity':0.5});									   
	},function(){
		$(this).find('> img').animate({'opacity':1});		
	});
	$('.order-now').click(function(){
		$('#contact-me').css('display','block').animate({'top':'-300px'},500,function(){
			$(this).css('z-index',501).animate({'top':0},500,function(){
				$('#packages').removeClass('selected').css('z-index','auto').css('display','none');
				$(this).addClass('selected').css('z-index',500);				
			});
	    });
	});
//handle form submission	
	 $('#frm').submit(function(e){
			e.preventDefault();//stop the form from sending				   	
			$('#notify').html('');
			//Get name field value
			var	data = {};
			var allInputs = $(':input',this).each(function(){
				var $t = $(this);
				data[$t.attr('name')] = $t.attr('value');
			});
			//Send data using ajax
			$.post(this.action, data,function(data){
			 	$('#notify').html('').append(data.message);
				$('#message-card').css('display','block').animate({'top':'-300px'},500,function(){
					$(this).css('z-index',501).animate({'top':0},500,function(){
						$('#contact-me').removeClass('selected').css('z-index','auto').css('display','none');
						$(this).addClass('selected').css('z-index',500);
					});
				});
			},'json');
			data = allInputs = null;
	   });
		$('#try-again').click(function(e){
				$('#contact-me').css('display','block').animate({'top':'-300px'},500,function(){
					$(this).css('z-index',501).animate({'top':0},500,function(){
						$('#message-card').removeClass('selected').css('z-index','auto').css('display','none');
						$(this).addClass('selected').css('z-index',500);
						
					});
				});
				e.preventDefault();
		});
	
});

