$(document).ready(function(){
	
	//text for the closer look icon tooltip
	$('.closerLookIcon').attr('alt', 'Click here to preview sample pages, audio excerpts, and/or video clips!');
	
	//Open the audio popup window
	$('A[rel="audio"]').click(function() {
        window.open( $(this).attr('href'), 'AudioViewer', 'scrollbars=no,width=365,height=200,screenX=200,screenY=200,top=200,left=200');
        return false;
    });	
	
	//Open the video popup window
	$('A[rel="video"]').click(function() {
        window.open( $(this).attr('href'), 'flashviewer','scrollbars=no,width=740,height=500,screenX=200,screenY=200,top=200,left=200');
        return false;
    });	
	
	$('.hide').show();
	
});