
	$(document).ready( function()
	{
	
		$.fn.qtip.styles.box = { // Last part is the name of the style
			   width: 260,
				padding: 5,
				background: '#755e51',
				color: '#b0aea0',
				border: {
					width: 7,
					radius: 5,
					color: '#755e51'
				},
			tip: 'leftBottom',
		   name: 'dark' // Inherit the rest of the attributes from the preset dark style
		}
		
		$('#lockon').qtip({
			content: "<h1>Desolate Skies</h1><p>My still incomplete shrine to <i>Lockon Stratos</i> or Neil Dylandy, as he is secretly known as. This focuses more on Season One of the anime.</p>",
			position: {
				corner: {
				target: 'rightMiddle',
				tooltip: 'leftBottom'
				}
			},
			style: { name: 'box' }
		});
		
		$('#allelujah').qtip({
			content: "<h1>Dissonance</h1><p>My first ever shrine, dedicated to <i>Allelujah Haptism</i> (the namesake of this domain). This is still in need of a major revamp, which I will be working on.</p>",
			position: {
				corner: {
				target: 'rightMiddle',
				tooltip: 'leftBottom'
				}
			},
			style: { name: 'box' }
		});
		
		$('#allefan').qtip({
			content: "<h1>Schism</h1><p>The Anime Fanlistings Network's approved fanlisting to Allelujah Haptism, co-owned with <i>Daphne</i> and adopted from <i>Alison</i>. &hearts;</p>",
			position: {
				corner: {
				target: 'rightMiddle',
				tooltip: 'leftBottom'
				}
			},
			style: { name: 'box' }
		});
		
		$('#allelock').qtip({
			content: "<h1>Repose</h1><p>The newly TAFL approved fanlisting for the relationship between <i>Allelujah and Lockon</i> (Neil).</p>",
			position: {
				corner: {
				target: 'rightMiddle',
				tooltip: 'leftBottom'
				}
			},
			style: { name: 'box' }
		});
		
		$('#wana').qtip({
			content: "<h1>a Cradle of Desire</h1><p>My first Gundam 00 fanlisting, TAFL approved for the first ending song <i>Wana</i>, by THE BACK HORN.</p>",
			position: {
				corner: {
				target: 'rightMiddle',
				tooltip: 'leftBottom'
				}
			},
			style: { name: 'box' }
		});
		
		$('#kyrios').qtip({
			content: "<h1>Dominatio</h1><p>TAFL's approved fanlisting for Allelujah's Gundam in Season One, <i>GN-003 Kyrios</i>.</p>",
			position: {
				corner: {
				target: 'rightMiddle',
				tooltip: 'leftBottom'
				}
			},
			style: { name: 'box' }
		});



	});


