// JavaScript Document
// clear field of any default text
function doClear(theText) {
	 if (theText.value == theText.defaultValue) {
		 theText.value = ""
	 }
}
//If nothing is entered, restore message when search box loses focus
function dontClear(theText) {
	if(theText.value.length == 0){
		theText.value = "Search"
	}	
}

//Scroller
$(document).ready(
function () {
    if ($("#magazine_scroll").length > 0)
        $("#magazine_scroll").show();
    if ($("#scroller").length > 0)
        $("#scroller").simplyScroll({ autoMode: 'loop', speed: 1 });
}
);


