// image rollover code. function calls every image that has the class "swapImage". 
$(document).ready(function() {
	$.swapImage(".swapImage");
});
//
$(document).ready(function() {
	$('div.select').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
});
//
$(document).ready(function() {
	$('div.select2').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
});
//
