﻿jQuery.noConflict();

jQuery(document).ready(
	function() {
		// Button hover
		jQuery('div.button').hover(
			function() {
				jQuery(this).children('div.button_left').css('background-image', 'url("./img/button_basic_left-over.png")');
				jQuery(this).children('div.button_middle').css('background-image', 'url("./img/button_basic_middle-over.png")');
				jQuery(this).children('div.button_right').css('background-image', 'url("./img/button_basic_right-over.png")');
			},
			function() {
				jQuery(this).children('div.button_left').css('background-image', 'url("./img/button_basic_left.png")');
				jQuery(this).children('div.button_middle').css('background-image', 'url("./img/button_basic_middle.png")');
				jQuery(this).children('div.button_right').css('background-image', 'url("./img/button_basic_right.png")');
			}
		);

		// Button (fx) hover
		jQuery('div.button_fx').hover(
			function() {
				jQuery(this).children('div.button_fx_left').css('background-image', 'url("./img/button_fx_left-over.png")');
				jQuery(this).children('div.button_fx_middle').css('background-image', 'url("./img/button_fx_middle-over.png")');
				jQuery(this).children('div.button_fx_right').css('background-image', 'url("./img/button_fx_right-over.png")');
			},
			function() {
				jQuery(this).children('div.button_fx_left').css('background-image', 'url("./img/button_fx_left.png")');
				jQuery(this).children('div.button_fx_middle').css('background-image', 'url("./img/button_fx_middle.png")');
				jQuery(this).children('div.button_fx_right').css('background-image', 'url("./img/button_fx_right.png")');
			}
		);

		// Button down
		jQuery('div.button').mousedown(
			function() {
				jQuery(this).children('div.button_left').css('background-image', 'url("img/button_basic_left-down.png")');
				jQuery(this).children('div.button_middle').css('background-image', 'url("img/button_basic_middle-down.png")');
				jQuery(this).children('div.button_right').css('background-image', 'url("img/button_basic_right-down.png")');
			}
		);

		// Button (fx) down
		jQuery('div.button_fx').mousedown(
			function() {
				jQuery(this).children('div.button_fx_left').css('background-image', 'url("img/button_fx_left-down.png")');
				jQuery(this).children('div.button_fx_middle').css('background-image', 'url("img/button_fx_middle-down.png")');
				jQuery(this).children('div.button_fx_right').css('background-image', 'url("img/button_fx_right-down.png")');
			}
		);

		// Button up
		jQuery('div.button').mouseup(
			function() {
				jQuery(this).children('div.button_left').css('background-image', 'url("./img/button_basic_left-over.png")');
				jQuery(this).children('div.button_middle').css('background-image', 'url("./img/button_basic_middle-over.png")');
				jQuery(this).children('div.button_right').css('background-image', 'url("./img/button_basic_right-over.png")');
			}
		);

		// Button (fx) up
		jQuery('div.button_fx').mouseup(
			function() {
				jQuery(this).children('div.button_fx_left').css('background-image', 'url("./img/button_fx_left-over.png")');
				jQuery(this).children('div.button_fx_middle').css('background-image', 'url("./img/button_fx_middle-over.png")');
				jQuery(this).children('div.button_fx_right').css('background-image', 'url("./img/button_fx_right-over.png")');
			}
		);

		// 'Register' button click
		jQuery('div.button_register').click(
			function() {
				window.location = 'register.html';
			}
		);
	}
);

