$(document).ready(function(){
	
	bindTech();	
	
	bindzoom()
	
});

function loadIndex() {
	
	// load slideshow
	$('.imagewrapper').cycle({ 
	    fx:     'fade', 
	    speed:   3000, 
	    timeout: 3000
	});
}

function bindTech() {
	$('#tech .link, #tech .cert').hover(
		function(e) {
			$('#tech .cert').css('outline', 'solid')
		},
		function(e) {
			$('#tech .cert').css('outline', '')
		}
	);
}

function render(view, container) {
	$.get(('partials/'+view+'.html'), function(result){ 
			$(container).html(result);
		});
}

function bindzoom() {
	$('#tech a.cert, #tech .link a').fancyZoom({scaleImg: true, closeOnClick: true}); 
}