// JavaScript Document
$(document).ready(function() {
	
	$('#giftwrap_container').hide();
	
	$('#giftwrap').click(function() {
		$("#content_main").animate({ height: "700px"});
		$('#giftwrap_container').fadeIn(2000);

	});
});