﻿$(document).ready(function() {
    $(".supplier_section").mouseover(function(event) {
        $(this).addClass('even');
        $("ul.anchor", $(this)).show();
    });

    $(".supplier_section").mouseout(function(event) {
        $(this).removeClass('even');
        $("ul.anchor", $(this)).hide();
    });

    $(".col1_news").mouseover(function(event) {
        $(this).addClass('even');
        $("ul.anchor", $(this)).show();
    });

    $(".col1_news").mouseout(function(event) {
        $(this).removeClass('even');
        $("ul.anchor", $(this)).hide();
    });

    $(".col1_full_news").mouseover(function(event) {
        $(this).addClass('even');
        $("ul.anchor", $(this)).show();
    });

    $(".col1_full_news").mouseout(function(event) {
        $(this).removeClass('even');
        $("ul.anchor", $(this)).hide();
    });

    $(".mainlisting_normal").mouseover(function(event) {
        //$(this).removeClass('mainlisting_normal');
        $(this).addClass('mainlisting_over');
        $("div.downloads_right", $(this)).show();
        //$(this).append('<div class="downloads_right"><ul><li class="download"><a href="#">Download now</a></li><li class="add_tocart"><a href="#">Add to Cart</a></li></ul></div>');
    });

    $(".mainlisting_normal").mouseout(function(event) {
        $(this).removeClass('mainlisting_over');
        //$(this).addClass('mainlisting_normal');
        $("div.downloads_right", $(this)).hide();
        //$('.downloads_right').remove();
    });
});
