
$(function() {
	
	$( ".jq-btn" ).button({
		icons: false,
		text: true
	})
	
	$( "#assistance-window" ).dialog({
		title: 'Send a question about this product',
		autoOpen: false,
		resizeable: false,
		width: 480,
		height: 325,
		modal: true
	});
	
	$( "#assistance-trigger" ).click(function() {
		$( "#assistance-window" ).dialog( "open" );
		$( "#assistance-textarea" ).select();
	});
	
	$( "#share-window" ).dialog({
		title: 'Share this page to your friend',
		autoOpen: false,
		resizeable: false,
		width: 240,
		height: 190,
		modal: true
	});
	
	$( "#share-trigger" ).click(function() {
		$( "#share-window" ).dialog( "open" );
		$( "#share-name" ).select();
	});
	
	$.panzoom();
	
});
	

