/*
 * productdetail-360.js
 * Controller code for inline 360 popups on product detail pages
 * @author Dan Neame <dneame@britishmuseum.co.uk>
 */

/*
 * Controller Code
 */
$( document ).ready( function(){

	// bind click event > create fresh iframe, set the URL, show it
	$( '.productdetail_360popup' ).click( function(){
		BMUI.InlinePopup.create_popup( { width: 400 , height: 440 , slideopen: true , url: $( this ).attr( 'href' ) , show: true , scrollbars: false , scrollto: false , panelY: 100 } );
		return false; // dont bubble
	} );

} );
