  $(document).ready(function(){
    
    //lightbox();
    //$( "body" ).append( "hello" );
    
    //Comment!!
   $(".grid_4").hover(function() {
        $(this).find("#downloadDiv").fadeIn("slow");
        $(this).find("#appTitle").fadeIn("slow");
     },
     function() {
        $(this).find("#downloadDiv").fadeOut("slow");
        $(this).find("#appTitle").fadeOut("slow");
   });
   
   
   $(".photoLink").click(function(){
        $(this).children().animate({marginTop:360},"slow");
        });
   
    $(".newsItem").hover(function() {
     $(this).animate({opacity:0.4},"fast");
     },
     function() {
     $(this).animate({opacity:1.0},"fast");
   });

   
 }); 
 
 function lightbox() {
   // var links = $( 'a[rel^=lightbox]' );
    
    var overlay = document.createElement( 'div' );
    //overlay.id = 'overlay';
    //overlay.className = 'overlay';
   // var container = document.createElement( 'div' );
    
    //overlay.style.display = 'none';

    //container.style.display = 'none';
    
    $( "body" ).append( "<div></div>" );
    
    
 }    
    
   
