////////////////////// STYLES

$.fn.qtip.styles.step_1 = { // Last part is the name of the style
   width: 450,
   background: '#D5FF6F',
   color: 'black',
   border: { width: 2, color: '#999', radius: 3},
   
   name: 'dark', // Inherit the rest of the attributes from the preset dark style
   tip: { corner: 'bottomLeft' }
}

////////////////////// END OF STYLES


$(".tooltip_step1").qtip({
   content:'<div style="font-size:12px; text-align:left;"><h2>STEP 1: Contact</h2> <p><b>Friendly advice</b> - Thanks to our experts, we can advise you on the best advertising method that suits your budget and your goals.</p> <p><b>Choose your campaign</b> - You can choose between three specially designed advertising campaigns: BRONZE, SILVER and GOLD.</p></div>',
   
   style: {  name: 'step_1', background: '#013300', color: '#FFF'},
	
	position: {
      corner: { target: 'topLeft', tooltip: 'bottomLeft'}  
	},
	
   show: { delay: 50 }
});




$(".tooltip_step2").qtip({
   content: '<div style="font-size:12px; text-align:left;"><h2>STEP 2: Discovery</h2> <p><b>Keywords</b> - We will ask you to prepare keywords that best describe your company and your services. Keywords are usually phrases of 2-3 words (e.g.: Consulting Dublin).</p> <p><b>Set your budget</b> - There is no minimum spending requirement. The amount you spend on AdWords is completely up to you. You can, for instance, set a daily budget of 5 and a maximum cost of 10 cent for each click on your ad. </p></div>',
   
   style: { name: 'step_1', background: '#286577', color: '#FFF' },

  	position: {
      corner: { target: 'topLeft', tooltip: 'bottomLeft'}  
	},

   show: { delay: 50 }
});


$(".tooltip_step3").qtip({
   content:'<div style="font-size:12px; text-align:left;"><h2>STEP 3: Launch</h2> <p><b>Ads Development</b> - You don`t have to spend time testing your ads. Using our skills and experience, we will manage your account so that your campaign works as effectively as possible - and you can focus fully on your business.</p> <p><b>Your ads online</b> - Now you are advertising to an audience that is already interested in you. People can simply click on your ad to make a purchase or learn more about your business and services. Note: Your ad display is free - you are charged only if someone clicks your ad and goes to your website.</p></div>',
   
 
 
 style: {  name: 'step_1', background: '#5F4865', color: '#FFF' },
	
	position: {
      corner: { target: 'topLeft', tooltip: 'bottomLeft'}  
	},
	
   show: { delay: 50 }
});




$(".tooltip_step4").qtip({
   content:'<div style="font-size:12px; text-align:left;"><h2>STEP 4: Maintenence</h2> <p><b>Testing</b> - After launching your campaign, we will test all your ads for effectiveness. We will pinpoint which ads contain the best keywords and which elicit the highest click-through-rate (to your website). That means we focus your AdWords budget on the ads that bring you the best results.</p> <p><b>Monthly maintenance</b> - Every campaign needs to be finetuned after a certain period. Competition doesn`t sleep. To stay ahead of the game, your account needs to be constantly adjusted to market changes. This way you will receive best value for your money.</p></div>',
   
   style: {  name: 'step_1', background: '#4D6541', color: '#FFF' },
	
	position: {
      corner: { target: 'topLeft', tooltip: 'bottomLeft'}  
	},
	
   show: { delay: 50 }
});
