var jqCMS = jQuery.noConflict(true);
jqCMS(document).ready(function(){
	var strHeaderImage = '/WebCMS/webcms.nsf/header-wa-parl-' + (Math.floor(Math.random()*3)+1) + '.jpg';
	jqCMS('#header').css('background', 'url(' + strHeaderImage + ')' );
	jqCMS('#SearchText').click(function() {
	    if (jqCMS(this).val() == 'enter keywords') {   
	        jqCMS(this).data('original', jqCMS(this).val()).val('');
	        }
	});
	jqCMS('#SearchText').blur(function() {
	    if (jqCMS(this).val() == '') {   
	        jqCMS(this).val(jqCMS(this).data('original'));
	        }
	});
	jqCMS('#SearchText').keyup(function(event){ 
		if(event.keyCode == 13){ 
			goSearchText(); 
		}
	});
	jqCMS('#SearchLocalMember').click(function() {
	    if (jqCMS(this).val() == 'postcode') {   
	        jqCMS(this).data('original', jqCMS(this).val()).val('');
	        }
	});
	jqCMS('#SearchLocalMember').blur(function() {
	    if (jqCMS(this).val() == '') {   
	        jqCMS(this).val(jqCMS(this).data('original'));
	        }
	});
	jqCMS('#SearchLocalMember').keyup(function(event){ 
		if(event.keyCode == 13){ 
			goSearchLocalMember(); 
		}
	});
	jqCMS('.resizeall').jfontsize({
		btnMinusClasseId: '#jfontsize-m',
		btnDefaultClasseId: '#jfontsize-d',
		btnPlusClasseId: '#jfontsize-p'
	});
})
function setMobileCookie (name,value,expires,path,domain,secure) {
	document.cookie = name + "=" + escape (value) +
	((expires) ? "; expires=" + expires.toGMTString() : "") +
	((path) ? "; path=" + path : "") +
	((domain) ? "; domain=" + domain : "") +
	((secure) ? "; secure" : "");
}
function goSearchText() {
	var strText = jqCMS('#SearchText').val();
	if(strText != '' && strText != 'enter keywords'){
		self.location.href="/websearch/parlsearchd.nsf/SearchResults?SearchDomain&Query=(SITESEARCHYES) AND (" + strText + ")&SearchOrder=1&SearchMax=1000&SearchWV=TRUE&SearchThesaurus=FALSE&SearchFuzzy=FALSE&Start=1&Count=25&SearchEntry=ResultEntry&Scope=1&DS=1&PS=1";
	} else {
		alert('Please enter a search criteria');
	}
}

