$(document).ready(function(){
	$("#films_new .film_list a").setFilmBg ("films_new");
	$("#films_top .film_list a").setFilmBg ("films_top");
});

$.fn.setFilmBg = function(t) {
	var cnt = 0;
	return this.each(function() {
		cnt=cnt+1;
		this.filmCnt = cnt;
		this.filmType = t;
		$(this).hover(
			function() {
				if(this.filmCnt > $.fn.filmBgLoaded) {
					this.style['background'] = 'url(\"'+$.fn.filmImagesFolder+$.fn.filmBgImages[this.filmType][this.filmCnt-$.fn.filmBgLoaded-1]+'\") center no-repeat #000';
				}
			},
			function() { }
		);
	});
};


