

//quick contact, Expand, collaps
var mins = 2;
$(function collapsExpand() {
    $("#qcontactLink").mouseover(function(event) {
        event.preventDefault();
        $("#quick_con").slideToggle();
       // alert();
    });

});

