jQuery.noConflict();

jQuery(document).ready(function() {

// suchen nach aktivem MenŸpunkt, und dann dort die Elemente abgreifen und in den div-Container packen
      
jQuery(".navselect").hover(
	function() { //Hover over event on list item
        jQuery(this).css({ 'background' : '#1376c9 url(topnav_active.gif) repeat-x'});
        jQuery(this).find("span").show();
		jQuery("#navactive").hide();
	},
	function() { //on hover out...
        jQuery(this).css({ 'background' : 'none'}); //Ditch the background
        jQuery(this).find("span").hide(); //Hide the subnav
		jQuery("#navactive").show();
	});

	jQuery("#navImgLeistungen").click(function () { 
     window.location.href = 'webdesign.html';
    });
	
	jQuery("#navImgLoesungen").click(function () { 
     window.location.href = 'typo3-cms.html';
    });
	
	jQuery("#navImgHosting").click(function () { 
     window.location.href = 'hosting-services.html';
    });
	
  	jQuery("#navImgKontakt").click(function () { 
     window.location.href = 'kontakt/kontaktdaten.html';
    });
    
   jQuery("#navImgUnternehmen").click(function () { 
     window.location.href = 'internetagentur-essen.html';
    });
    
    jQuery("#navImgReferenzen").click(function () { 
     window.location.href = 'kundenprojekte.html';
    });	
	
});


// siFr Einstellungen

var gothic = {
	src: 'fileadmin/template-iw/fonts/gothic.swf'
};

sIFR.activate(gothic);

sIFR.replace(gothic, {
	selector: '#text02,#text03',
	wmode: 'transparent',
	css: 'h1 {color: #FFFFFF;}, h2 {color: #FFFFFF;}'  	
});

sIFR.replace(gothic, {
	selector: '.news-list-item-index-title,.csc-header-n1,.csc-header-n2',
	wmode: 'transparent',
	css: 'h1 {color: #5D5D5D;}, a {color: #5D5D5D; text-decoration: none;}, a:hover {color: #5D5D5D;}'  	
});