
$(document).ready(function () {

$jq('#sub_header').click(function(e) {
    var x = e.pageX;
    var y = e.pageY;
    var z=0.5*document.documentElement.clientWidth;
//alert(x+','+y+', w='+z);

if( x>z && (y<102) && (y>61) ) {
                $jq('#pop1').show('slow');
                $jq('#pop1').click(function() {
                $jq('#pop1').hide();
                });
}



});
});


