(function($) {
"use strict";
jQuery(document).ready(function() {
var top_news = jQuery('#featured-slider');
top_news.show().owlCarousel({
items : 1,
singleItem : true,
responsive: true,
navigation : true,
navigationText : ['',''],
});
});
})(jQuery);
jQuery(document).ready(function($) {
jQuery('.fancybox').fancybox();
//Check to see if the window is top if not then display button
jQuery(window).scroll(function($){
if (jQuery(this).scrollTop() > 100) {
jQuery('.scrollToTop').addClass('activetop');
jQuery('.scrollToTop').fadeIn();
} else {
jQuery('.scrollToTop').fadeOut();
}
});
//Click event to scroll to top
jQuery('.scrollToTop').click(function($){
jQuery('html, body').animate({scrollTop : 0},800);
return false;
});
//sticky sidebar
if( $(window).width() > 768 ){
var at_body = jQuery("body");
var at_window = jQuery(window);
if(at_body.hasClass('at-sticky-sidebar')){
if(at_body.hasClass('right-sidebar')){
jQuery('#secondary, #primary').theiaStickySidebar();
}
else{
jQuery('#secondary, #primary').theiaStickySidebar();
}
}
}
});