
var refer = '';
var PAGEID = 16760;
$(function() {
	$(".fancygallery").fancybox();
  
});
// GLOBAL JAVASCRIPT

// INITIALIZE WOW EFFECTS

wow = new WOW(
                      {
                      boxClass:     'wow',      // default
                      animateClass: 'animated', // default
                      offset:       0,          // default
                      mobile:       true,       // default
                      live:         true        // default
                    }
                    )
                    wow.init();
                    

// TRIGGER CSS CHANGES ON SCROLL
                    
jQuery(document).ready(function($){
	$(window).scroll(function(){
		if ($(this).scrollTop() > 130) {
			$('#idGoesHere').css("background-color", "#fff");
			$('#idGoesHere').css("transition", "all .5s ease-in-out");
		} else {
			$('#idGoesHere').css("background-color", "#000");
		}
	});
});

// TRIGGER CSS CHANGES ON SCROLL 
                    
jQuery(document).ready(function($){
	$(window).scroll(function(){
		if ($(this).scrollTop() > 20) {
			$('#headerContainer').css("background-color", "rgba(34, 24, 51, 1)");
            // $('#headerContainer').css("background-color", "rgba(255, 255, 255, 1)");
			$('#headerContainer').css("-webkit-box-shadow", "0px 3px 8px 0px rgba(0,0,0,0.4)");
			$('#headerContainer').css("-moz-box-shadow", "0px 3px 8px 0px rgba(0,0,0,0.4)");
			$('#headerContainer').css("box-shadow", "0px 3px 8px 0px rgba(0,0,0,0.4)");
			$('#headerContainer').css("border-bottom", "1px solid rgba(255,255,255,0.5)");
			$('#headerContainer').css("transition", "all .25s ease-in-out");
// 			$('.navbar-default .navbar-nav > li > a:hover').attr('style', 'color: rgb(132, 38, 124)');
// 			$('.navbar-default .navbar-nav > li > a').attr('style', 'color: rgb(0, 0, 0) !important');
// 			$('.navbar-default .navbar-nav > li > a').attr('style', 'color: rgb(0, 0, 0) !important');
// 			if ($('.navbar-default .navbar-nav > li > a:hover')) {
// 			    $('.navbar-default .navbar-nav > li > a').removeAttr('style', 'color: rgb(0, 0, 0) !important');
//                 $('.navbar-default .navbar-nav > li > a').attr('style', 'color: rgb(132, 38, 124)');
// 			} else {
//                 $('.navbar-default .navbar-nav > li > a').attr('style', 'color: rgb(0, 0, 0) !important');
// 			}
		} else {
		   	$('#headerContainer').css("background-color", "transparent");
			$('#headerContainer').css("-webkit-box-shadow", "0px 0 0 0px rgba(0,0,0,0)");
			$('#headerContainer').css("-moz-box-shadow", "0px 0 0 0px rgba(0,0,0,0)");
			$('#headerContainer').css("box-shadow", "0px 0 0 0px rgba(0,0,0,0)");
			$('#headerContainer').css("border-bottom", "1px solid rgba(255,255,255,0)");
// 			$('.navbar-default .navbar-nav > li > a:hover').attr('style', 'color: rgb(132, 38, 124)');
// 			$('.navbar-default .navbar-nav > li > a').attr('style', 'color: rgb(255, 255, 255)');
		}
	});
}); 