﻿   
$(function(){
        $('#SearchImg').click(function(){
            var s = '/Search/Content.aspx?q=' + $('#txtSearchTop').val() + '&page=1';
            window.location = s;
        });
        
        $('#txtSearchTop').click(function(){
            $('#txtSearchTop').val('');
        });
        
        $('#txtQuickShare').click(function(){
            $('#txtQuickShare').val('');
        });
});

function KeyPressed(e)
{
    var keycode;

    if(e)
    {
        e = e 
    } 
    else 
    {
        e = window.event
    } 

    if(e.which)
    { 
        keycode = e.which
    } 
    else 
    {
        keycode = e.keyCode 
    }

    if(keycode == 13)
    {
        return true;
    }
    return false;
}

function CloseMainSearch()
{
    $('#ShareDisplay').fadeOut(1000);
}


    
    
