
//-------------
//Jquery scripts
$(document).ready(function(){
		$.fn.qtip.styles.mystyle = { 
		  show: 'mouseover',
		  hide: 'mouseout', 
		  width: 200,
		  padding: 5,
		  background: '#F6AF9C',
		  color: '#ffffff',
		  textAlign: 'center',
		  border: {
			 width: 1,
			 radius: 3,
			 color: '#F4A28C'
		  },
		  tip: 'topLeft',
		  name: 'dark' 
		}
		
		$('.item-rss a').qtip({
		   content: 'Subscribe to our website',
		   style: 'mystyle'
		});
		
		$('.item-fb a').qtip({
		   content: 'Like us on Facebook',
		   style: 'mystyle'
		});
		
		$('.item-twitter a').qtip({
		   content: 'Follow us on Twitter',
		   style: 'mystyle'
		});
		
		//$('.item-foursquare a').qtip({
		   //content: 'Some text here, needs to be replaced.',
		   //style: 'mystyle'
		//});
		
		$('#menu-item-enchanted a').qtip({
		   content: 'Your event with style, your style.',
		   style: 'mystyle'
		});
		
		$('#menu-item-aisle a').qtip({
		   content: 'Find everything you need to make your wedding as special as the first day you met.',
		   style: 'mystyle'
		});
		
		$('#menu-item-chic a').qtip({
		   content: 'Dashing invites for the chic couple',
		   style: 'mystyle'
		});
		
		//$('#menu-item-karaz a').qtip({
		 //  content: 'Some text here some text here.',
		  // style: 'mystyle'
		//});
		
		
	});
	
	
	
	
