//menu
function menuChange(page){
    if (page == 'home'){
	    document.getElementById('home-menu').src='images/menu/homeActive.png';
	}
	else if(page == 'collection'){
	    document.getElementById('collection-menu').src='images/menu/collectionActive.png';
	}
	else if(page == 'about'){
	    document.getElementById('about-menu').src='images/menu/aboutActive.png';
	}
	else if(page == 'stockists'){
	    document.getElementById('stockists-menu').src='images/menu/stockistsActive.png';
	}
	else if(page == 'contact'){
	    document.getElementById('contact-menu').src='images/menu/contactActive.png';
	}
}



//Sign-up
function clearDefault(el) {
    if (el.defaultValue==el.value){
        el.value = "";
		document.getElementById(el).style.textDecoration='none';
    }
    else{}
}


//Image swap functions for Collections page
function vintageSwap(img) {
    var path = 'images/vintage/';
	var pathLarge = 'images/vintage/large/';
	var type = '.png';
	var type2 = '.jpg';
	var image = path+img+type;
	var imageLarge = pathLarge+img+type2;
	
	
    document.getElementById('main-image').src=image;
	document.getElementById('enlarge-link').href=imageLarge;
}

function classicSwap(img) {
    var path = 'images/classic/';
	var pathLarge = 'images/classic/large/';
	var type = '.jpg';
	var image = path+img+type;
	var imageLarge = pathLarge+img+type;
	
	
    document.getElementById('main-image').src=image;
	document.getElementById('enlarge-link').href=imageLarge;
}


//Stockists search
function searchDiv(search) {
    if(search=='city'){
	    document.getElementById('city-search').style.display='block';
		document.getElementById('postcode-search').style.display='none';
	}
	else if(search=='postcode'){
	    document.getElementById('city-search').style.display='none';
		document.getElementById('postcode-search').style.display='block';
	}
	else{}
}