function windowOpen( url, name, options )
{
	jQuery( 'body' ).append( '<div id="price-enquiry"></div>' );
	jQuery( '#price-enquiry' ).load( url, function() {
		jQuery( '#price-enquiry' ).fadeIn();
	} );
}

jQuery(function(){
	jQuery(window).bind( 'ajaxSend', function() { jQuery( 'body' ).css( 'cursor', 'progress' ); } );
	jQuery(window).bind( 'ajaxStop', function() { jQuery( 'body' ).css( 'cursor', 'default' ); } );
});

