//jQuery.noConflict();

function goHome(){
	window.location.href = BASE_URL;
	
}

/*
 * General DOM ready statemenets
 * 
 */
jQuery(function($) {
	
	//Some IE6 hacks
	if (($.browser.msie) && ($.browser.version <= 6)) {
		
	}
	
	bindSugestion();
});

function bindSugestion(){
			$("#suggestionsForm").bind("submit", function() {
				
				$.fancybox.showActivity();
	
				$.ajax({
					type		: "POST",
					cache	: false,
					dataType: "html",
					url		: BASE_URL+"/suggestions/post/index/format/html",
					data		: $(this).serializeArray(),
					success: function(data) {
						$("#container").html(data);
						$.fancybox.hideActivity();
					}
				});
	
				return false;
			});
}

function suggestionComplete(){
	
}
