
Site = {
	
	load : function(){
		console.log('loading');
		
		jQuery(document).ready(function(){

				var image = jQuery('.csc-textpic-image img');
				image.hover(function(){
					jQuery(this).attr('src', 'fileadmin/templates/gfx/selens_logo_big_over.png');
				}, function(){
					jQuery(this).attr('src', 'fileadmin/templates/gfx/selens_logo_big.png');
				});

				

				
				
		});
	
	},
	
	
};

Site.load();

