// JavaScript Document

$(function() {
	$('#splashHome').cycle('fade');
});

$(document).ready(function() 
{
   // By suppling no content attribute, the library uses each elements title attribute by default
   $('#marquee a[href]').qtip({
		position: {
			target: 'mouse'
		},
		show: {
			delay: 0
		},
      // Simply use an HTML img tag within the HTML string
      content: '<img src="http://atmospherees.com.au/layout/images/marquees-tooltip.jpg" alt="Owl" />',
   style: { 
      width: 208,
      padding: 20,
      background: 'url(http://atmospherees.com.au/layout/images/tooltip.png) no-repeat',
      color: 'black',
      textAlign: 'center',
      border: {
         width: 0
      },
      name: 'dark' // Inherit the rest of the attributes from the preset dark style
   }
   });
   $('#flooring a[href]').qtip({
		position: {
			target: 'mouse'
		},
		show: {
			delay: 0
		},
      // Simply use an HTML img tag within the HTML string
      content: '<img src="http://atmospherees.com.au/layout/images/flooring-tooltip.jpg" alt="Owl" />',
   style: { 
      width: 208,
      padding: 17,
      background: 'url(http://atmospherees.com.au/layout/images/tooltip.png) no-repeat',
      color: 'black',
      textAlign: 'right',
      border: {
         width: 0
      },
      name: 'dark' // Inherit the rest of the attributes from the preset dark style
   }
   });
   $('#furniture a[href]').qtip({
		position: {
			target: 'mouse'
		},
		show: {
			delay: 0
		},
      // Simply use an HTML img tag within the HTML string
      content: '<img src="http://atmospherees.com.au/layout/images/furniture-tooltip.jpg" alt="Owl" />',
   style: { 
      width: 208,
      padding: 20,
      background: 'url(http://atmospherees.com.au/layout/images/tooltip.png) no-repeat',
      color: 'black',
      textAlign: 'left',
      border: {
         width: 0
      },
      name: 'dark' // Inherit the rest of the attributes from the preset dark style
   }
   });
   $('#accessories a[href]').qtip({
		position: {
			target: 'mouse'
		},
		show: {
			delay: 0
		},
      // Simply use an HTML img tag within the HTML string
      content: '<img src="http://atmospherees.com.au/layout/images/accessories-tooltip.jpg" alt="Owl" />',
   style: { 
      width: 208,
      padding: 17,
      background: 'url(http://atmospherees.com.au/layout/images/tooltip.png) no-repeat',
      color: 'black',
      textAlign: 'right',
      border: {
         width: 0
      },
      name: 'dark' // Inherit the rest of the attributes from the preset dark style
   }
   });
});
