$(document).ready( function()
{
	$('img.order_link').rotate3DMenu( $('div.order_carousel') );
	
	/*
	$('div.order_link').each( function( i )
	{
		$(this).css( { background : 'url(' + $(this).attr('src') + ') no-repeat' } );
	});
	*/
	
	$('img.order_link').click( function( event )
	{
		window.location = $(this).attr( 'href' );
	
		event.preventDefault();
	});
	
	/*
	$('img.order_link').mouseover( function( event )
	{
		//when someone mouses over a link, they should see a description of the restaurant:
		
	});
	*/
	$('.lucky a').click( function( event )
	{
		var random_number = Math.floor( Math.random()*($('img.order_link').length) );
		
		$($('img.order_link')[random_number]).click();	
	
		event.preventDefault();
	});
	
	$('.move_carousel').bind( 'mousedown' , { object : $('div.order_carousel')[0] , speed : 0.10 } , move3dObjects );
	
	
});