/**
 * @version    $id: jquery.splashpage.script.js 25.08.2010 16:17:09 benjamin braun $
 * @package    Queen of Souls
 * @subpackage -
 * @copyright  Copyright (C) 2010 JLabStudios.net. All Rights Reserved.
 * @author     JLabStudios.net, see CREDITS.php for more Details
 * @link       http://www.jlab-studios.net
 * @email      info@jlab-studios.net
 * @license    Commercial
 */

jQuery(document).ready( function($) {
  
  // Page Enter

  $( '#page_enter' ).hover( function() {
    
    $( 'body' ).animateToSelector({
      selectors: ['body.white'],
      properties: [
        'background-color'
      ]
    });
    
  }, function() {
    
    $( 'body' ).animateToSelector({
      selectors: ['body.black'],
      properties: [
        'background-color'
      ]
    });
    
  });
  
  // Fancybox
  
  $( '.iframe' ).fancybox( {
    'width'  : '75%',
    'height' : '75%',
    'autoScale' : false,
    'transitionIn' : 'none',
    'transitionOut' : 'none',
    'type' : 'iframe'
  });



});
