/**
 * @author Mark
 */
$(document).ready(function(){	
	$("#searchInput").focus(function() { 
     this.value= '';
	});
	
	$(function()
    {
        var target = location.hash && $("[id='" + location.hash + "']")[0];
        if (target) 
        {
            $.scrollTo(target, {
                speed: 1000
            });
        }
        
        $('a').click(function()
        {
        	//alert('a');
        });
    });
});

function showMediaTab(id) {
	//hide all others
	$('.mediaTabBody').hide();
	
	$('#mediaTabBody_' + id).show();

}

