$(function() {	
	
	$('a#close_area').click(function() {
		$('span#open_area').hide();								 
	});
	
	$('a[href=#back]').click(function() {
		window.history.back();
		return false;
	});
	
	if(document.body.className === '') {
	
		function rand ( n )
		{
		  return ( Math.floor ( Math.random ( ) * n + 1 ) );
		}
		
		var $ss = $('#slideshow');          
		// add slides to slideshow (images 2-8) 
		for (var i = 1; i < 9; i++) 
			$ss.append('<a href="http://desktopmusiclibrary.ilikemusic.com"><img src="/ilm-media/images/logos/logo'+i+''+rand(9)+'.jpg" width="125" height="152" class="logo" alt="I Like Music Logo" /></a>');  
		// start the slideshow 
		$ss.cycle({
			timeout: 15000  // milliseconds between slide transitions
		});
		
	}
		
});
