$(document).ready(function() {

    var icon_1_img_clicked = false;
    var icon_2_img_clicked = false;
    var icon_3_img_clicked = false;
    var icon_4_img_clicked = false;

    $(".home_icons_bottom_detail").hide();

    $(".home_icons_bottom_icon_1_img").hover(
	function () {

	    icon_1_img_clicked = false;

	    $(".home_icons_bottom_detail_body").empty();
	    $(".home_icons_bottom_detail").show();
	    $(".home_icons_bottom_detail_body").html('<p><strong>Select a category in the quick search box or type a key word into the top left box. You can also click on advanced search in this box for a more detailed search. Details of the tracks that match your search will be shown on a page where you can listen to them.</strong></p>');

	}, 
	function () {

	    if (icon_1_img_clicked == false){
		$(".home_icons_bottom_detail_body").empty();
		$(".home_icons_bottom_detail").hide();
	    }

	}

    );

    $(".home_icons_bottom_icon_1_img").click(
	function () {
	    $(".home_icons_bottom_detail_body").empty();
	    $(".home_icons_bottom_detail").show();
	    $(".home_icons_bottom_detail_body").html('<p><strong>Select a category in the quick search box or type a key word into the top left box. You can also click on advanced search in this box for a more detailed search. Details of the tracks that match your search will be shown on a page where you can listen to them.</strong></p>');
	    icon_1_img_clicked = true;                    
	}
    );            

    $(".home_icons_bottom_icon_2_img").hover(
	function () {

	    icon_2_img_clicked = false;                

	    $(".home_icons_bottom_detail").show();
	    $(".home_icons_bottom_detail_body").html('<p><strong>On the search results page click play on the track you want to listen to. The music player will appear in the top right corner. You can fast forward or rewind by dragging or clicking in the progress bar. </strong></p>');

	}, 
	function () {

	    if (icon_2_img_clicked == false){                
		$(".home_icons_bottom_detail_body").empty();
		$(".home_icons_bottom_detail").hide();
	    }

	}

    );

    $(".home_icons_bottom_icon_2_img").click(
	function () {
	    $(".home_icons_bottom_detail_body").empty();
	    $(".home_icons_bottom_detail").show();
	    $(".home_icons_bottom_detail_body").html('<p><strong>On the search results page click play on the track you want to listen to. The music player will appear in the top right corner. You can fast forward or rewind by dragging or clicking in the progress bar. </strong></p>');
	    icon_2_img_clicked = true;                    
	}
    );              

    $(".home_icons_bottom_icon_3_img").hover(
	function () {

	    icon_3_img_clicked = false;                   

	    $(".home_icons_bottom_detail").show();
	    $(".home_icons_bottom_detail_body").html('<p><strong>Log in or create an account by clicking register. Add suitable tracks to the shopping basket by clicking add to basket. To pay, click <strong>checkout</strong> where you can choose to use Paypal or Google Checkout then follow the instructions.</strong></p>');
	}, 
	function () {

	    if (icon_3_img_clicked == false){                   
		$(".home_icons_bottom_detail_body").empty();
		$(".home_icons_bottom_detail").hide();
	    }

	}
    );            

    $(".home_icons_bottom_icon_3_img").click(
	function () {
	    $(".home_icons_bottom_detail_body").empty();
	    $(".home_icons_bottom_detail").show();
	    $(".home_icons_bottom_detail_body").html('<p><strong>Log in or create an account by clicking register. Add suitable tracks to the shopping basket by clicking add to basket. To pay, click <strong>checkout</strong> where you can choose to use Paypal or Google Checkout then follow the instructions.</strong></p>');
	    icon_3_img_clicked = true;                    
	}
    ); 

    $(".home_icons_bottom_icon_4_img").hover(
	function () {

	    icon_4_img_clicked = false;     

	    $(".home_icons_bottom_detail").show();
	    $(".home_icons_bottom_detail_body").html('<p><strong>When you\'ve completed the payment process a zip file will be made available to download containing the tracks in 256kbs mp3 format and the licence agreement. The file will be available to download for 48 hours after payment.</strong></p>');

	}, 
	function () {

	    if (icon_4_img_clicked == false){                  
		$(".home_icons_bottom_detail_body").empty();
		$(".home_icons_bottom_detail").hide();
	    }

	}

    );     

    $(".home_icons_bottom_icon_4_img").click(
	function () {
	    $(".home_icons_bottom_detail_body").empty();
	    $(".home_icons_bottom_detail").show();
	    $(".home_icons_bottom_detail_body").html('<p><strong>When you\'ve completed the payment process a zip file will be made available to download containing the tracks in 256kbs mp3 format and the licence agreement. The file will be available to download for 48 hours after payment.</strong></p>');
	    icon_4_img_clicked = true;                    
	}
    );             

 });   
