
// JavaScript Document

$(document).ready(
    function() {

        $("#aboutBranchesCollections").hover(
            function() {
                $("#aboutBranchesCollections").addClass("home_over").removeClass("home_out")
            },
            function() {
                $("#aboutBranchesCollections").addClass("home_out").removeClass("home_over")
            }
	);

        $("#aboutLearnMore").hover(
            function() {
                $("#aboutLearnMore").addClass("home_over").removeClass("home_out")
            },
            function() {
                $("#aboutLearnMore").addClass("home_out").removeClass("home_over")
            }
	);

        $("#myLibraryMore").hover(
            function() {
                $("#myLibraryMore").addClass("home_over").removeClass("home_out")
            },
            function() {
                $("#myLibraryMore").addClass("home_out").removeClass("home_over")
            }
	);

        $("#helpMore").hover(
            function() {
                $("#helpMore").addClass("home_over").removeClass("home_out")
            },
            function() {
                $("#helpMore").addClass("home_out").removeClass("home_over")
            }
	);

        $("#roomBookingMore").hover(
            function() {
                $("#roomBookingMore").addClass("home_over").removeClass("home_out")
            },
            function() {
                $("#roomBookingMore").addClass("home_out").removeClass("home_over")
            }
	);

	$('#SearchQuery')[0].focus()
    }
);

