// JavaScript Document

function my_rollover(image_name){
	document[image_name].src= "images/"+image_name+"-on.jpg";
}

function my_rollout(image_name){
	document[image_name].src="images/"+image_name+"-off.jpg";
}
function open_new_ind(url){
	window.open(url,'mywindow','width=550, height=750, left=0,top=0, bottom=0, right=0, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, copyhistory=no, resizable=no');
}
function lifestyles(img_name) {
	document.display.src= "images/lifestyle-"+img_name+".jpg";

}
function preview(img_name) {
	document.display.src= "images/eyewear/sm-detail-"+img_name+".jpg";

}



function toggle(img_name, display) {	
	document.getElementById(display).src= "images/media2007/"+img_name+"-big.jpg";
}

function toggle2(img_name, display) {	
	document.getElementById(display).src= "images/media2008/"+img_name+"-big.jpg";
}


function featured(img_name, display) {	
	document.getElementById(display).src= "images/featured/ff-"+img_name+"-big.jpg";
}

function changeCaption(text) {
   if(document.getElementById) {
      document.getElementById("caption").innerHTML=text;
   }
}