//when the dom is ready
$(function(){

	$("aside.driver").click(function(){
		var myurl = "/" + $(this).attr('id');
		window.location = myurl;
	});
	
	$(".fancybox").fancybox({
		'type'				: 'iframe',
		'height'			: '75%',
		'width'				: 755
	});	
});
//when everything's been loaded
 $(window).load( function() {


	
});

