function changeres(id)
{
	if(screen.width<=1024) {
		res="1024";
	}else if(screen.width<=1280){
		res="1280";
	}else if(screen.width<=1366){
		res="1366";
	}else if(screen.width<=1440){
		res="1440";
	}else if(screen.width<=1680){
		res="1680";
	}else{
		res="1920";
	}
	identity=document.getElementById("bg");
	identity.innerHTML="<div><table cellpadding=0 cellspacing=0><tr><td><img src=\"/img/bg/" + id + "_" + res + ".jpg\" /></td></tr></table></div>";

}

function show(i){ 
if(document.images) 
document.images["stdview"].src=i+"-l.jpg"; 
document.getElementById('styleno').innerHTML=i; 
} 

function initPage() {

$(".snapshot").click(function(e){
	e.preventDefault();
	
	var id = "#" + $(this).attr("id") + "b";
	$(id).show();
	$("#return").show();
	$("#pid").show();
	document.getElementById("pid").innerHTML = "NO: "+ $(this).attr("id");
});


$("#return").click(function(e){
	e.preventDefault();
	$(".view1").hide();
	$("#return").hide();
	$("#pid").hide();
});
}

