//PICK UP CITY
(function() {
var f = document.getElementById('pick_div_bg');

if (f && f.pickup_city) {
var pickup_city = f.pickup_city;
var n = navigator;
var l = location;
if (n.platform == 'Win32') {
pickup_city.style.cssText = 'border: 1px solid #a5acb2; height:19px; width:144px;';
}
var b = function() {
if (pickup_city.value == '') {
pickup_city.style.background = '#FFFFFF url(http://art.kingandwilson.com.au/template_images/city_town.gif) left no-repeat';
}
};
var f = function() {
pickup_city.style.background = '#ffffff';
};
pickup_city.onfocus = f;
pickup_city.onblur = b;
if (!/[&?]q=[^&]/.test(l.search)) {
b();
}
}
})();


//PICK UP STATE
(function() {
var f = document.getElementById('pick_div_bg');

if (f && f.pickup_state) {
var pickup_state = f.pickup_state;
var n = navigator;
var l = location;
if (n.platform == 'Win32') {
pickup_state.style.cssText = 'border: 1px solid #a5acb2; height:19px; width:144px;';
}
var b = function() {
if (pickup_state.value == '') {
pickup_state.style.background = '#FFFFFF url(http://art.kingandwilson.com.au/template_images/state.gif) left no-repeat';
}
};
var f = function() {
pickup_state.style.background = '#ffffff';
};
pickup_state.onfocus = f;
pickup_state.onblur = b;
if (!/[&?]q=[^&]/.test(l.search)) {
b();
}
}
})();


//DELIVERY CITY
(function() {
var f = document.getElementById('pick_div_bg');

if (f && f.delivery_city) {
var delivery_city = f.delivery_city;
var n = navigator;
var l = location;
if (n.platform == 'Win32') {
delivery_city.style.cssText = 'border: 1px solid #a5acb2; height:19px; width:144px;';
}
var b = function() {
if (delivery_city.value == '') {
delivery_city.style.background = '#FFFFFF url(http://art.kingandwilson.com.au/template_images/city_town.gif) left no-repeat';
}
};
var f = function() {
delivery_city.style.background = '#ffffff';
};
delivery_city.onfocus = f;
delivery_city.onblur = b;
if (!/[&?]q=[^&]/.test(l.search)) {
b();
}
}
})();


//DELIEVERY UP STATE
(function() {
var f = document.getElementById('pick_div_bg');

if (f && f.delivery_state) {
var delivery_state = f.delivery_state;
var n = navigator;
var l = location;
if (n.platform == 'Win32') {
delivery_state.style.cssText = 'border: 1px solid #a5acb2; height:19px; width:144px;';
}
var b = function() {
if (delivery_state.value == '') {
delivery_state.style.background = '#FFFFFF url(http://art.kingandwilson.com.au/template_images/state.gif) left no-repeat';
}
};
var f = function() {
delivery_state.style.background = '#ffffff';
};
delivery_state.onfocus = f;
delivery_state.onblur = b;
if (!/[&?]q=[^&]/.test(l.search)) {
b();
}
}
})();



