var Search = {
				baseUrl:'',
				selectTheme:function(theme)
							{
								$j('#search-theme').removeAttr('disabled');
								$j('#search-theme').val(theme);
							},
				selectLocation:function(location)
							{
								$j('#search-location').removeAttr('disabled');
								$j('#search-location').val(location);
							},
				selectMedia:function(media)
							{
							$j('#search-media').removeAttr('disabled');
								$j('#search-media').val(media);
							},
				applyFilter:function()
				{
					var str = $j('#search-filter-form').serializeArray();
					var q = $j("#searchInput").val();
					var qs = (q!="Search") ?"/q/"+ q : "";
					$j('#searchContainer').load(this.baseUrl+"/search/result/format/html"+qs,str);
				},
				search:function()
				{
					var q = $j("#searchInput").val();
					q = (q!="Search") ? q : "";
					window.location.href = this.baseUrl+"/search/result/q/"+q;
				}
			};