var basicClass = function() {
	var self = this;

	
	//tooltips for locations
	this.locations = function()
	{
		$('.locations a').click( function() { return false; } );
		
		//general settings
		var $settings = {
			show: 'mouseover',
			hide: 'mouseout',
			position: {
				corner: {
					target: 'bottomLeft',
					tooltip: 'topRight'
				}
			},
			style: {
				textAlign: 'center',
				tip: true, // Give it a speech bubble tip with automatic corner detection
				name: 'dark',
				textAlign: 'left',
				border: {
					radius: 8
				},
				width: 460
			}
		};
		
		//feldkirch
		$settings.content = {
							title: '<div class="multi-col clearfix">' +
									  '<div class="col1"><h3>I<span class="color small">&amp;</span>F Immobilien und Finanzdienstleistung GmbH</h3></div>' + 
									  '<div class="col2"><h3>Kurt Canori Bilanzbuchhalter</h3></div>' +
								   '</div>',
							text:
								'<div class="multi-col clearfix">' +
									'<div class="col1"><p>Schlo&szlig;graben 16<br />6800 Feldkirch</p>' + 
									'<p>Tel.: +43 (0)5522 70166<br />Fax: +43 (0)5522 70138</p><p>Email: office(at)if-immobilien.at</p></div>' +
									'<div class="col2"><p>Pfarrer-Gunz-Str. 3<br />6800 Feldkirch</p>' + 
									'<p>Tel.: +43 (0)664 4470168</p></div>' +
								'</div>'
							};
		
		//console.log($settings);
		
		$('.locations .feldkirch').qtip( $settings );
		
		
		//general settings
		var $settings = {
			show: 'mouseover',
			hide: 'mouseout',
			position: {
				corner: {
					target: 'bottomRight',
					tooltip: 'topLeft'
				}
			},
			style: {
				textAlign: 'center',
				tip: true, // Give it a speech bubble tip with automatic corner detection
				name: 'dark',
				textAlign: 'left',
				border: {
					radius: 8
				}
			}
		};
		
		//bregenz
		$settings.content = {
				title: '<h3>I<span class="color small">&amp;</span>F Immobilien und Finanzdienstleistung GmbH</h3>',
				text:
					'<p>Albert Bechtold Weg 2<br />6900 Bregenz</p>' + 
					'<p>Tel.: +43 (0)5574 20040<br />Fax: +43 (0)5574 20040 - 6</p>'
				};
		
		$('.locations .bregenz').qtip( $settings );
		
		//lustenau
		$settings.content = {
				title: '<h3>Versicherungsagentur H&auml;mmerle Daniel</h3>',
				text: '<p>Raiffeisenstrasse 18<br />6890 Lustenau<p><p>Tel.: 0699 17007041</p>'
				};
		
		$('.locations .lustenau').qtip( $settings );
		
		//hohenems
		$settings.content = {
				title: '<h3>Finanzdienstleistung Nachbauer Hubert</h3>',
				text: '<p>Im Kirchholz 31<br />6845 Hohenems</p><p>Tel.: +43 (0)699 180 6111 1</p>'
				};
		
		$('.locations .hohenems').qtip( $settings );
		
		//klaus
		$settings.content = {
				title: '<h3>Versicherungsmakler Bleier Roland</h3>',
				text: '<p>Breite 3a<br />6833 Klaus</p><p>Tel.: +43 (0)5523 51140</p>'
				};
		
		$('.locations .klaus').qtip( $settings );
	};

};

var basic = new basicClass();

$(function(){
	basic.locations();
});
