/* Javascript Document for Brandlab - Maislinger Snoli */
/*
	created by: Klaus Hoermann <klaus@3b-solutions.net>
	created for: Brandlab - Werbeagentur
	Client: ÖVP Absam
	Description: Calling the QTip JQuery Plugin 
	Copyright: (C) 3B-Solutions Klaus Hoermann 2010
*/

/* when the document is ready */
jQuery(document).ready(function()
{	
	//------------------------------------------------------------------
	// REPLACE LINK TITLE TOOLTIPS WITH STYLISH ONES
	$('a[title]').qtip(
	{
		style:
		{
			background: "#EDC114",
			color:"black",
			"font-weight":"bold",
			"font-family":"Verdana, Geneva, sans-serif",
			"font-size":13,
			"text-align":"center",
			border:
			{
				width:2,
				radius:0,
				color:"#C10020"
			},
			tip: true
		},
		position:
		{
			target: "mouse",
			corner:
			{
				target: "bottomMiddle",
				tooltip: "topMiddle"
			}
		}
	})
	//------------------------------------------------------------------
	// REPLACE IMAGE TITLE TOOLTIPS WITH STYLISH ONES
	$('img[title]').qtip(
	{
		style:
		{
			background: "#EDC114",
			color:"black",
			"font-weight":"bold",
			"font-family":"Verdana, Geneva, sans-serif",
			"font-size":13,
			border:
			{
				width:2,
				radius:0,
				color:"#C10020"
			},
			tip: true
		},
		position:
		{
			target: "mouse",
			corner:
			{
				target: "bottomMiddle",
				tooltip: "topMiddle"
			}
		}
	})
});