/*
*	DPAC second level script
*	DPAC 2008
*/


window.addEvent('domready',function(){new Silk.Font($('contentCell'),[11,13,15,17],{decrease:'decreaseFontSize',increase:'increaseFontSize'});new Silk.Scroll();var blacklist=['this'];$$('#rightSearch form')[0].addEvent('submit',function(e){var value=$$('#rightSearch #queries_keyword_query')[0].value.trim();if(value.length<=3||blacklist.contains(value)){if(Browser.Engine.trident5){var message="Your search string is very short and probably won't return a useful set of results.\nTry to narrow down your search by including other keywords, or by searching for a less generic term.\n\nWould you like to perform this search anyway?";if(!confirm(message)){e.stop();}}else{var message="Your search string is very short and probably won't return a useful set of results.\nTry to narrow down your search by including other keywords, or by searching for a less generic term.\n\nYou can alter your search in the box below.";e.stop();var qry=prompt(message,value);if(qry){$('queries_keyword_query').value=qry;$$('#rightSearch form')[0].removeEvents('submit');this.submit();}}}});$$("a.box","a.chromelessBox").each(function(link){new MultiBox([link],{showControls:false,showNumbers:false,ajax:true});});$$('table.rowColor').each(function(table){table.getElements('tr').each(function(row,i){i++;if(i%2){row.setStyle('backgroundColor','#f7f7f7');}});});});