$( function() {
	var GET = getUrlVars();
	if( GET[ 'id' ] == 18 ) {
		
		$( '#content > div.left' ).addClass( 'noBorder' );
	
		// United Drug
		$( '#companyDiagram' ).append(
			$( '<a></a>' ).attr( 'id', 'link_uniteddrug')
						  .attr( 'class', 'dbox' )
						  .attr( 'href','http://www.united-drug.ie/' )
						  .attr( 'target', '_blank' )
						  .mouseover( function() {
							Tip( 'Untited Drug is the largest pharmaceutical<br />' +
								 'wholesaler in Ireland and has operations<br />' +
								 'all across the globe - <strong>click to visit the site.</strong>' );
						  })
						  .mouseout( function() {
							UnTip();
						  })
		);
	
		// Ashfiled In2Focus
		$( '#companyDiagram' ).append(
			$( '<a></a>' ).attr( 'id', 'link_ai2f')
						  .attr( 'class', 'dbox' )
						  .attr( 'href','default.asp?id=3' )
						  .mouseover( function() {
							Tip( 'Sample Text' );
						  })
						  .mouseout( function() {
							UnTip();
						  })
		);
		
		// Ashfiled Healthcare Ireland
		$( '#companyDiagram' ).append(
			$( '<a></a>' ).attr( 'id', 'link_healthcare_irl')
						  .attr( 'class', 'dbox' )
						  .attr( 'href','default.asp?id=95' )
						  .mouseover( function() {
							Tip( 'Ireland\'s leading pharmaceutical<br />' +
								 'solutions provider - <strong>click to visit the page.</strong>' );
						  })
						  .mouseout( function() {
							UnTip();
						  })
		);
		
		// Ashfield Healthcare US
		$( '#companyDiagram' ).append(
			$( '<a></a>' ).attr( 'id', 'link_healthcare_us')
						  .attr( 'class', 'dbox' )
						  .attr( 'href','default.asp?id=96' )
						  .mouseover( function() {
							Tip( 'Our US-based pharmaceutical solutions<br />' + 
								 'provider, located in Ivyland, PA - <strong>click to visit the page.</strong>' );
						  })
						  .mouseout( function() {
							UnTip();
						  })
		);
		
		// Business Edge
		$( '#companyDiagram' ).append(
			$( '<a></a>' ).attr( 'id', 'link_business')
						  .attr( 'class', 'dbox' )
						  .attr( 'href','default.asp?id=97' )
						  .mouseover( function() {
							Tip( 'Training and development courses with the power<br />' +
								 'to revitalise and inspire - <strong>click to visit the page.</strong>' );
						  })
						  .mouseout( function() {
							UnTip();
						  })
		);
		
		// Alliance Healthcare
		$( '#companyDiagram' ).append(
			$( '<a></a>' ).attr( 'id', 'link_alliance')
						  .attr( 'class', 'dbox' )
						  .attr( 'href','default.asp?id=94' )
						  .mouseover( function() {
							Tip( 'Specialist healthcare support services<br />' +
								 'for complex projects - <strong>click to visit the page.</strong>' );
						  })
						  .mouseout( function() {
							UnTip();
						  })
		);
		
		// Universal Procon UK
		$( '#companyDiagram' ).append(
			$( '<a></a>' ).attr( 'id', 'link_universal_uk')
						  .attr( 'class', 'dbox' )
						  .attr( 'href','default.asp?id=98' )
						  .mouseover( function() {
							Tip( 'A comprehensive range of services to<br />' +
								 'support and enhance meeting and<br />' +
								 'event management - <strong>click to visit the page.</strong>' );
						  })
						  .mouseout( function() {
							UnTip();
						  })
		);
		
		// Universal Procon US
		$( '#companyDiagram' ).append(
			$( '<a></a>' ).attr( 'id', 'link_universal_us')
						  .attr( 'class', 'dbox' )
						  .attr( 'href','default.asp?id=98' )
						  .mouseover( function() {
							Tip( 'A comprehensive range of services to<br />' +
								 'support and enhance meeting and<br />' +
								 'event management - <strong>click to visit the page.</strong>' );
						  })
						  .mouseout( function() {
							UnTip();
						  })
		);
	}
});