jQuery(document).ready(function(){
	/* originally, opening popups was handled by thickbox
	* as thickbox is no longer actively supported, we switched to jqueryUI on 2010-05-18
	* code below looks for appropriately styled jqueryUI link
	* if link is not found, they must still be using thickbox, which handles itself */
	if ( jQuery(".fashioncraftJarLink").length ) {
		jQuery(".fashioncraftJarLink").click(function(event){
			event.preventDefault();
			if ( jQuery("#fashioncraftJarPopup").length ) {
				jQuery("#fashioncraftJarPopup").load( jQuery(this).attr( "href" ) ).dialog( "open" );
			} else {
				jQuery("body").append( "<div id=\"fashioncraftJarPopup\" title=\"Design\" style=\"display: none;\"></div>");
				jQuery("#fashioncraftJarPopup").load( jQuery(this).attr( "href" ), function(){
					jQuery(this).dialog({
						height: 640,
						width: 840
					});
				});
			}			
			return false;
		});
	}
});
