$(document).ready(function(){
	
	$("#details .detail, div.copy p a").dialog({
		autoOpen: false,
		modal: true,
		draggable: false,
		resizable: false,
		height: 450,
		width: 692,
		zIndex: 3000
	});
	
	$('div.copy').each(function(){
		var copy = $(this).contents('p:first').text();
		var copyShort = copy.substring(13,72);
		if(copyShort.length > 0){
			$(this).empty()
			.prepend(copyShort + "... " + $(this).siblings('.copy-link').html())
			.wrapInner('<p></p>')
			.contents().show()
			.siblings('.copy-link').remove();
		}
	});
	
	$(".item").each(function(e){
		var link = $(this).find("a.detail, div.copy p a");
		var linkID = link.attr("href");
		link.bind("click", function(e){
			$(linkID).dialog('open');
			return false;
		});
	});
	$("#sppSearchTerm").change(function(){
		window.location = "/spp/search-results.asp?industry_id=" + $(this).val();
	});
		
});
