﻿/**
* PIHL - Various jQuery
* Put small sized and low functional jQuery here
*/

function overSmallBoxes(){
	$(this).addClass('over');
}

function outSmallBoxes(){
	$(this).removeClass('over');
}

function printPage(){
	window.print();
}

$(document).ready(function(){
	$('.fp-small-content').hover(overSmallBoxes, outSmallBoxes);
	$('.print-text').click(printPage);
	$('.print-icon').click(printPage);
});