// JavaScript Document
 
$(document).ready(function() {
	$("a.thumb").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	$("#findasolution").change(function(e) { window.location.href = this.options[this.selectedIndex].value; });
	$(".btnSolution").click(function(){
		window.location.href = $("#findasolution").val();
	});
	
	
});


 
