/*jsl:ignoreall*/
/*jsl:option explicit*/
/*jsl:declare jQuery*/
/*jsl:declare $*/
/*jsl:declare document*/
/*jsl:declare window*/
_tmCookie = $.cookie('targetmarket');
if (_tmCookie != null && !isNaN(parseInt(_tmCookie)) ) {
	$(document).unbind('ready');
	document.location = document.location.href.replace('/new','/'+_tmCookie+"/edit");
}

$(document).ready(function() {
	$("#survey-title").find("textarea").focus(function() {
		$(this).closest('div.input-box').addClass("active");
	}).blur(function() {
		$(this).closest('div.input-box').removeClass("active");
	});
	$('#market_form').submit(function() {
		$.cookie('targetmarket', 'new', {
			path: '/'
		});
		return true;
	});
});
