$(document).ready(function() {
    $(".vidbox").jqvideobox({'width' : 400, 'height': 300, 'getimage': true, 'navigation': true});
  
});

$('#one').liteAccordion({
                onActivate : function() {
                        this.find('figcaption').fadeOut();
                },
                slideCallback : function() {	
                        this.find('figcaption').fadeIn();
                },
                autoPlay : true,
                pauseOnHover : true,
                theme : 'basic',
                containerWidth : 720,
                containerHeight : 303,                 
                enumerateSlides : false,
                rounded : false				// whether to use rounded corners or not** (boolean)
             
}).find('figcaption:first').show();

$('#two').liteAccordion({
                onActivate : function() {
                        this.find('figcaption').fadeOut();
                },
                slideCallback : function() {	
                        this.find('figcaption').fadeIn();
                },
                autoPlay : false,
                pauseOnHover : true,
                theme : 'basic',
                containerWidth : 720,
                containerHeight : 303,                 
                enumerateSlides : false,
                rounded : false				// whether to use rounded corners or not** (boolean)
             
}).find('figcaption:first').show();

$(".close-red").click(function() {  
    $("#message-red").addClass('hidde');
}); 

$(".close-blue").click(function() {  
    $("#message-blue").addClass('hidde');
}); 

$("input.phone").mask("999999999");



