// ----------------------------------------------------
// Version: 0.1
// Last change: 10.06.2009
// Edited by: Sebastian Mohila
// Description: Basic functions for Joomla! pages
//
// (C) 2000 - 2009 formativ.net oHG / Sebastian Mohila
// All Rights Reserved
// ----------------------------------------------------


// Konflikt-Modus aktivieren
var $j=jQuery.noConflict();



// -----------------------------------------------------
// Name: ()
// Funktion: Führt initiale Funktionen aus
// Rückgabe: Null
// Status: aktiv
// Version: 0.1
// Letzte Änderung: 10.06.2009
// -----------------------------------------------------
$j(function() {
	// Mouse-Over-Effekt in Tarif-Vergleich initiieren
	$j("img[name=cTarifVergleichBestellenImage]").mouseover(function() {$j(this).attr("src","/images/stories/buttons/bestellen_produkttabelle_over.gif");}).mouseout(function() {$j(this).attr("src","/images/stories/buttons/bestellen_produkttabelle.gif");});

	// Mouse-Over-Effekt in Tarif-Beschreibung initiieren
	$j("img[name=cTarifBestellenImage]").mouseover(function() {$j(this).attr("src","/images/stories/buttons/jetzt_bestellen_tabelle_over.gif");}).mouseout(function() {$j(this).attr("src","/images/stories/buttons/jetzt_bestellen_tabelle.gif");});

	// Mouse-Over-Effekt in Domain-Checker initiieren
	$j("#cDomainCheckOrderButton").mouseover(function() {$j(this).attr("src","/images/stories/buttons/jetzt_bestellen_over.gif");}).mouseout(function() {$j(this).attr("src","/images/stories/buttons/jetzt_bestellen.gif");});

	// Mouse-Over-Effekt in Domain-Übersicht initiieren
	$j("#cDomainOrderButton").mouseover(function() {$j(this).attr("src","/images/stories/buttons/domain_bestellen_over.gif");}).mouseout(function() {$j(this).attr("src","/images/stories/buttons/domain_bestellen.gif");});
});



