function openModal(id){
	if(typeof id == 'object'){
		var id = $(id).attr('href');
		id = id;
		console.log(id);
	};
		
	/*$('.overlay').fadeTo('fast', 0.75);*/
	
	$(id).fadeIn('fast');
	
	
};

function closeModal(){
	$('.overlay, .modal').fadeOut('fast');
};

function alignModal(){
	$('.modal').each(function(){
		var left = ($(window).width() / 2) - ($(this).outerWidth() / 2);
		var top = ($(window).height() / 2) - ($(this).outerHeight() / 2);
				
		$(this).css({left:left, top:top});
	});
	
};


$(function(){
	alignModal();
	
	//an example of how you would open a specific modal
	//openModal('#customize2');
	
	$(window).resize(alignModal).keypress(function(event){
		if(event.which == '27'){
			closeModal();
		};
	});
	
	$('.overlay,.modal-close').click(closeModal);
	
	$('.open-modal').click(function(id){
		openModal(id.target);
		return false;
	});
});

















