$(document).ready(function () {

	/* Shadowbox */
	Shadowbox.init();

	/* Page block image interaction */
	$('.pbi-thumb img').mouseenter(function () {

		/* Get id's */
		var id = $(this).attr('id');
		var src_id = id.replace('thumb', 'large');

		/* Hide all pbi normal images */
		$('.pbi-large').css('display', 'none');

		/* Show normal linked to current thumb */
		$('#' + src_id).css('display', 'block');

	});

	$('.panel').mouseenter(function() {

		$(this).css('background' ,'url("../../gfx/bg_panel_active.png")');

	}).mouseleave(function (){

		$(this).css('background' ,'url("../../gfx/bg_panel_inactive.png")');

	});
});
