$(function () {

//preload images
$.preloadCssImages();

// link styles
        $("a:not([href*='http://www.genoid.net/'])").not("[href^='#']").not("[href^='http://www.addthis.com']").not("[href^='http://www.antszlabor.hu']").not("[href*='@']").addClass("web").attr({ target: "_blank" });
        $("a[href$='.pdf']").addClass("pdf");
        $("a[href$='.doc']").addClass("doc");
        $("a[href$='.txt']").addClass("txt");

// inside content tabs
	var tabContainers = $('div.tabs > div');
	
	$('div.tabs ul.tabNavigation a').click(function () {
		tabContainers.hide().filter(this.hash).show();
		
		$('div.tabs ul.tabNavigation a').removeClass('selected');
		$(this).addClass('selected');
		
		return false;
	}).filter(':first').click();

//illustration slideshow

  $('#illustration_elements').cycle({ 
    timeout:  8000, 
    speed:  1000
  });

//news feed slideshow

  $('#news_items').cycle({ 
    timeout:  6000, 
    speed:  500
  });

// initiate addthis
    $.addthis('lukeadamis');

});