$(document).ready(function(){ 

	var deviceAgent = navigator.userAgent.toLowerCase();
	var agentID = deviceAgent.match(/(iphone|ipod|ipad)/);
    var imageS = $('.entry .gallery');
    var nav = $('#nav');
    var navBreak = $('#nav ul li:lt(3)');
    var widthEr = $(document).width();
    var heightEr = $(document).height();
    var offSet = nav.offset();
    var photoSover = $('.gallery-icon a');
 
    photoSover.animate({opacity: '0.75'}); // Photos Focus

	function onDis(){ $(this).stop(true).animate({opacity: '1.0'}, 100) };
	function offDis(){ photoSover.animate({opacity: '0.75'}, 500) }; //.click(function(){ return false; });

    var config = { sensitivity: 1, interval: 100, over: onDis, timeout: 0, out: offDis };    
    photoSover.hoverIntent(config);

//    imageS.masonry({ singleMode: false }); // Focusing on Image Container
//    imageS.draggable({cursor: 'move'}, function(){ return false; });
//    imageS.draggable();
//    console.debug('success');
            
});
