// Functions
// Lightbox
$(function() {
	$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
		
});

// Qtip

$(document).ready(function()
{

$('img[alt]').each(function()
{
	$(this).qtip({
		content: $(this).attr('alt'),
			position: {
			corner: {
				target: 'topRight',
				tooltip: 'bottomLeft'
			},
			target:'mouse'	
		},
style: {
width: 200,
padding: 15,
background: '#000000',
color: '#ffffff',

border: {
width: 7,
radius: 5,
color: '#000000'
},


tip: 'bottomLeft',
name: 'dark' // Inherit the rest of the attributes from the preset dark style
}

})
.attr('alt', '');
})
});

