$(document).ready(function(){

	//text for the closer look icon tooltip
	$('.closerLookIcon').attr('title', 'Click here to preview sample pages, audio excerpts, and/or video clips!');
	if($('.closerLookIcon').length){
		$('.closerLookIcon').tooltip({
			showURL: false,
			track: true,
			top: 15,
			left: 15,
			fade: true,
			extraClass: 'toolTipLarge'
		});
	}

	//Open the audio popup window
	$('A[rel="audio"]').click(function() {
        window.open( $(this).attr('href'), 'AudioViewer', 'scrollbars=no,width=365,height=225,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();

});


