// When DOM is ready
$(document).ready(function(){

	// Launch MODAL BOX if the Login Link is clicked
	$("#login_link").click(function(){
		$('#login_form').modal();
	});
	
	$("#new_gummizelle").click(function(){
		$('#register_form').modal();
	});

});
