// for slides in and slides out

//for exits...
$(document).ready(function(){
  
	// resize images to fit content areas
	$('#left_column img').addClass('resize');
	
	$("img.resize").resize({
	//    scale: 0.5, // 0.5 = 50%
	    maxWidth: 390
	//    maxHeight: 150
	});


}); //stop jquery

// FOR JUKEBOX OPEN LINK
//  pass the url  and  optionally a width, height, and window name
function spawnWindow(url,name,w,h){
	if(w == undefined) w = 425;
	if(h == undefined) h = 425;
	if(name == undefined) name = "popWindow";
	var newWindow = window.open(url,name,"toolbar=0,scrollbars=1,resizable=1,width="+w+",height="+h+"\"");		
 }
 





