// JavaScript Document
//config textballoons top
$(document).ready(function(){
		
		$('#productstop ul li a').bt({
		  positions: ['left','right'],
		  verticalOffset: 0,
		  padding: 20,
		  width: 100,
		  spikeLength: 40,
		  spikeGirth: 30,
		  cornerRadius: 25,
		  fill: 'rgba(0, 0, 0, .8)',
		  strokeWidth: 3,
		  strokeStyle: '#FFF',
		  cssStyles: {color: '#FFF', fontWeight: 'bold', textAlign: 'center'}
		});
				//   
		$('#productlanding .productrow div a').bt({
		  positions: ['left','right'],
		  verticalOffset: -100,
		  padding: 10,
		  width: 150,
		  spikeLength: 40,
		  spikeGirth: 30,
		  centerPointX:     -5,
		  centerPointY:     -5,
		  overlap: 0,
		  cornerRadius: 25,
		  fill: 'rgba(0, 0, 0, .8)',
		  strokeWidth: 3,
		  strokeStyle: '#FFF',
		  cssStyles: {color: '#FFF', fontWeight: 'bold', textAlign: 'center'}
		
		
		});
		
});
