function resizeHomeVideo(){
	if (screen.width < 1280) {
		$('btvhomevideo').style.width = '310px';
		$('btvhomevideo').style.height = '200px';		

	}
}

function resizeSpecialPic() {
	if (screen.width < 1280) {
		var alltags=document.getElementsByTagName("IMG");
		for (i=0; i<alltags.length; i++) {
			if (alltags[i].className=='specials_home') {
				alltags[i].style.width='300px';
			}
		}
	}
}

function resizeGalleryHome() {
	if (screen.width < 1280) {
		var alltags=document.getElementsByTagName("IMG");
		for (i=0; i<alltags.length; i++) {
			if (alltags[i].className=='gallery_home') {
				alltags[i].style.width='300px';
			}
		}
	}
}

function resizeGalleryDetail() {
	if (screen.width < 1280) {
		var alltags=document.getElementsByTagName("IMG");
		for (i=0; i<alltags.length; i++) {
			if (alltags[i].className=='gallery_detail') {
				alltags[i].style.width='600px';
			}
		}
	}
}