$(document).ready(function() {
	$("#gift-cards").fancybox({
	'width'				: '70%',
	'height'			: '70%',
	'autoScale'			: false,
	'transitionOut'		: 'elastic',
	'transitionIn'		: 'elastic',
	'type'				: 'iframe'
	});
	
	var $button = $('#orderonline-visible');
	var $slider = $('#orderonline-drop');
	

$button.toggle(
  	function() {
  		$slider.animate({marginTop: '+=250',}, 500); 
  		}, 
  	function() {
  		$slider.animate({marginTop: '-=250',}, 500); 
  	});
});


