$(document).ready(function() {
    
var Engine = {
        
          tweaks : {
             
               breadcrumbs : function(){
                  if($("h2.entry-title").length > 0){
					var html = $("div#breadcrumbs").html();
					$("div#breadcrumbs").html("<a href='/'>Home</a> &raquo; "+html);
					}
               },
			   
			   
			   galleryPagination : function () {
							if($('#gallery-container').length)
							{
								if(!$('ul.gallery').hasClass('no-pagin'))
								{
									var pagination = $('ul.gallery ul.pagination').clone();
									$('#gallery-container').append(pagination);
									$('ul.gallery ul.pagination').remove();
									$('#gallery-container ul.pagination a').addClass('smallButton').wrapInner('<span></span>');
									$('#gallery-container ul.pagination li.pag-current').wrapInner('<strong class="smallButton currentPaginationItem"><span></span></strong>');
								}
							}
						},

			fancyBoxInit : function () {                  
							if (typeof $.fn.fancybox == 'function'){
								$("a.fancybox").fancybox();             
							}
						},
						
			activeNav : function(){
					if(window.location.href.indexOf("/our-work/") != -1){
						$("#nav li:nth-child(3)").addClass("selected");
					}
				}
             
             
          }// end tweaks
       
     };
   
     Engine.tweaks.breadcrumbs();
	 Engine.tweaks.galleryPagination();
	 Engine.tweaks.fancyBoxInit(); 
	 Engine.tweaks.activeNav();
    
});

