﻿
var $j = jQuery.noConflict();
$j(function(){

    
     
    $j("#ClickForMore").click(function(){
    
        $j("#About").stop().animate({
            "height" : "290px"            
        
        },300);
          
        return false;        
    });  
          
    $j("#CloseAbout a").click(function(){
        $j("#About").animate({
            "height" : "0px"   
           
        },300); 
      
        return false;
    });  
    
    $j(".VideoWrapper").hover(function(){
        $j(this).children(".frontImg").stop().animate({"top" : "127px"},300)
    },function (){
        $j(this).children(".frontImg").stop().animate({"top" : "0px"},300)
    });     
 
});
