/* Javascript Document for Brandlab - Maislinger Snoli */
/*
	created by: Klaus Hoermann <klaus@3b-solutions.net>
	created for: Brandlab - Werbeagentur
	Client: Maislinger Snoli
	Description: Contains all JQuery stuff for the basic root template.	 
	Copyright: (C) 3B-Solutions Klaus Hoermann 2010
*/

// jQuery's noConflict mode is used instead of the $
var J = jQuery.noConflict();

/* when the document is ready */
jQuery(document).ready(function()
{	
	//------------------------------------------------------------------
	// REPLACE LINK TITLE TOOLTIPS WITH STYLISH ONES
	J('a[title]').qtip(
	{
		style:
		{
			background: "#E31619",
			color:"white",
			"font-weight":"bold",
			border:
			{
				width:2,
				radius:0,
				color:"white"
			},
			tip: true
		},
		position:
		{
			target: "mouse",
			corner:
			{
				target: "bottomMiddle",
				tooltip: "topLeft"
			}
		}
	})
	
	//------------------------------------------------------------------
	// REPLACE IMAGE TITLE TOOLTIPS WITH STYLISH ONES
	J('img[title]').qtip(
	{
		style:
		{
			background: "#E31619",
			color:"white",
			"font-weight":"bold",
			border:
			{
				width:2,
				radius:0,
				color:"white"
			},
			tip: true
		},
		position:
		{
			target: "mouse",
			corner:
			{
				target: "bottomMiddle",
				tooltip: "topLeft"
			}
		}
	}) 
});