$(document).ready(function() {

	$('.imgtip').bt({
		contentSelector: "$(this).find('.vtip')",
		cssStyles: {height: '300px', color: '#fff'},
		fill: '#ffffff',
		cornerRadius: 8,
		strokeWidth: 1,
		strokeStyle: '#781480',
		width: 260,
		animate: true,
		shadow: true,
		shadowColor: 'rgba(0,0,0,.5)',
		shadowBlur: 8,
		shadowOffsetX: 4,
		shadowOffsetY: 4,
		positions: ['left', 'right', 'bottom', 'top']
	});

$('.imgtip_2').bt({
		contentSelector: "$(this).find('.vtip')",
		cssStyles: {height: '300', color: '#fff'},
		fill: '#ffffff',
		cornerRadius: 8,
		strokeWidth: 1,
		strokeStyle: '#781480',
		width: 320,
		animate: true,
		shadow: true,
		shadowColor: 'rgba(0,0,0,.5)',
		shadowBlur: 8,
		shadowOffsetX: 4,
		shadowOffsetY: 4,
		positions: ['left', 'right', 'bottom', 'top']
	});

$('.imgtip_3').bt({
		contentSelector: "$(this).find('.vtip')",
		cssStyles: {height: '300', color: '#fff'},
		fill: '#ffffff',
		cornerRadius: 8,
		strokeWidth: 1,
		strokeStyle: '#781480',
		width: 80,
		animate: true,
		shadow: true,
		shadowColor: 'rgba(0,0,0,.5)',
		shadowBlur: 8,
		shadowOffsetX: 4,
		shadowOffsetY: 4,
		positions: ['left','right']
	});


$('.imgtip_4').bt({
		contentSelector: "$(this).find('.vtip')",
		cssStyles: {height: '300', color: '#fff'},
		fill: '#220700',
		cornerRadius: 8,
		strokeWidth: 1,
		strokeStyle: '#a56237',
		width: 80,
		animate: true,
		shadow: true,
		shadowColor: 'rgba(0,0,0,.5)',
		shadowBlur: 8,
		shadowOffsetX: 4,
		shadowOffsetY: 4,
		positions: ['left','right']
	});


});


