﻿
$(function () {
    $('.p-search').hover(
	    function () {
	        $(this).children('.p-search-tags').show();

	        // ie hover issue fix
	        $(this).children('.p-search-box').addClass('p-search-box-hover');
	    },
	    function () {
	        $(this).children('.p-search-tags').hide();

	        // ie hover issue fix
	        $(this).children('.p-search-box').removeClass('p-search-box-hover')
	    });

    // removes the title attribute from the slides of the home page animation
    $('.c-template-slides div.slide').removeAttr('title');
});
