$(document).ready(function(){
$('.footerimg').append("");
$('.footerimg').append("");
$('.footerimg span').css({'opacity':.7});
$('.footerimg').hover(function(){
$(this).children('span').stop().animate({'top':'0px'},700);
},function(){
$(this).children('span').stop().animate({'top':'110px'},700);
});
$(function() {
$(".feature-quotes").jCarouselLite({
auto:3000,
//pause: "#CarouselPlayPause",
speed:1500,
start: 0,
visible:1
});
});
/* Tipsy */
$('#social a').tipsy({gravity: $.fn.tipsy.autoNS,fade:true});
/*$('.boxmain').hide();
$('.boxcontainer').click(function(){
$(this).children('div:first').toggleClass('redboxtop');
$(this).children('div:first').toggleClass('greyboxtop');
$(this).children('div:eq(1)').toggleClass('redboxmain');
$(this).children('div:eq(1)').toggleClass('greyboxmain');
$(this).children('div:eq(1)').slideToggle();
$(this).children('div:last').toggleClass('greyboxbottom');
$(this).children('div:last').toggleClass('redboxbottom');
});
$('.boxcontainer').hover(function(){
$(this).children('.greyboxtop').css({'background-position':'0px -30px'});
$(this).children('.greyboxmain').css({'background':'#ed1c24'});
$(this).children('.greyboxbottom').css({'background-position':'0px -50px'});
},function(){
$(this).children('.greyboxtop').css({'background-position':'0px 0px'});
$(this).children('.greyboxmain').css({'background':'#3b3b3b'});
$(this).children('.greyboxbottom').css({'background-position':'0px -20px'});
});*/
// NEWSLETTER
var docHeight = $(document).height();
var winHeight = $(window).height();
var winWidth = $(window).width();
$('#newsletter-main').css({'width':'0px','height':'0px'});
$('#newsletter_bg').css({'opacity':.4,'width':winWidth,'height':docHeight});
$('#newsletter-main').css({'top':winHeight/2-200});
$('#newsletter-main').css({'left':winWidth/2-250});
$('a.newsletter').click(function(){
$('#newsletter-encase').slideDown(1200);
$('#newsletter-main').animate({'width':'550px','height':'400px'},2000);
});
$('#newsletter_bg').click(function(){
$('#newsletter-encase').slideUp(600);
$('#newsletter-main').animate({'width':'0px','height':'0px'},600);
});
// QUIZ
$('#quiz_encase li').click(function(){
$('#quiz_encase .inner').animate({"left": "+=-620px"});
$(this).parent('ul').find('li').removeClass('active');
$(this).addClass('active');
});
$('#quiz_encase a').click(function(){
$('#quiz_encase .inner').animate({"left": "+=620px"});
});
});