$(document).ready(function() {
	$('img.attachment-medium').captify();
	function addMega(){
		$(this).addClass("hovering");
    }
	function removeMega(){
		$(this).removeClass("hovering");
	}
	var megaConfig = {
        interval: 20,
        sensitivity: 4,
        over: addMega,
        timeout: 100,
        out: removeMega
    };

	$("li.mega").hoverIntent(megaConfig);

	$('.discography a').imgPreview({
    	containerID: 'imgPreviewWithStyles',
   		imgCSS: {
        	height: 300
    	}
	});

});
