/*
 * SimpleModal Contact Form
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: contact.js 243 2010-03-15 14:23:14Z emartin24 $
 *
 */

jQuery(function ($) 
{
	$('.OurFleetButton').click(function (e) 
	{
		$.modal('<span class="simplemodal-close">X</span><iframe src="/equipment/our_fleet.php" height="260" width="905" frameborder="0" scrolling="no" style="border:0; overflow: hidden; background-color: #52525A;"></iframe>', 
		{
			closeHTML:"",
			opacity:90,
			overlayCss: 
			{
				backgroundColor:"#282834"
			}
		});
	});
});

