//$.fn.showModal = function(){
//	$('#cookie-modal').modal('show');
//});

$(document).ready(function() {
	
	// Load the accordian message after 1s
	window.setTimeout(function() {
    	$('#privacy').addClass('in');	
	}, 800); 
	
	// Slideup the privacy message if the user hits the close button
	$('#privacyclose').click(function(){
		$("#privacy").slideUp("fast");
	});

	// Launch the modal window if the user clicks the find out more button in the accordian
	$('#cookieslaunch').click(function(){	
  		$('#cookie').trigger('click');
  	});

  	// Expand the modal window if the user clicks the find out more button on the modal form
  	$("#learn_more").click(function(){
  		$('#more-cookies').toggleClass('hide');
  		$('#more-cookies-buttons').toggleClass('hide');
  	});

});

