// JavaScript Document

  <!-- Form Popup Script for create account -->
		$('.modal_create').live('click', function() {
			url = this.href; // this is the url of the element event is triggered from
				$.fn.colorbox({
					href: url,
					innerWidth:600,
					innerHeight:360,
					//iframe: false,
					scrolling: false,
				});
			return false;
		}); 

