$(document).ready(function(){
	// preload CSS images
	$.preloadCssImages();
	
	// first and last selectors
	$('ul li:last-child, ol li:last-child, table tr:last-child, .vipOverviewBlock:last').addClass('last');
	$('ul li:first-child, ol li:first-child, table tr:first-child').addClass('first');
	// active links
	$('.active').click(function(){
		return false;	
	});
	
	// print buttons
	$('.print').click(function(){
		window.print();	
	});
});

// FUNCTIONS

function jLink(link){
	//get jQuery found links to work properly cross browser
	//by turning it into a form and submitting it
	$(link).each(function(){
		url = $(this).find('a').attr('href');
		$(this).append('<form action="'+url+'" method="get"></form>');
	});
	$(link).hover(function(){
		$(this).addClass('hover');	
	},function(){
		$(this).removeClass('hover');	
	});
	$(link).click(function(){
		$(this).find('form').submit();	
	});	
}


