function strpos( haystack, needle, offset){
    var i = (haystack+'').indexOf( needle, offset ); 
    return i===-1 ? false : i;
}
function str_replace(search, replace, subject) {
 	var s = subject;
    var ra = r instanceof Array, sa = s instanceof Array;
    var f = [].concat(search);
    var r = [].concat(replace);
    var i = (s = [].concat(s)).length;
    var j = 0;
    
    while (j = 0, i--) {
        if (s[i]) {
            while (s[i] = (s[i]+'').split(f[j]).join(ra ? r[j] || "" : r[0]), ++j in f){};
        }
    }

    return sa ? s : s[0];
}
$(document).ready(function() {
	
		
	$(".nochange").each(function(){
	 	$(this).click(function(){
			var $imgsrc = $(this).children("img").attr("src");
			
			if ( strpos($imgsrc, "top_iconclose",1)>1 ){
				$imgsrc = str_replace("top_iconclose","top_iconopen", $imgsrc);
			}else{
				$imgsrc = str_replace("top_iconopen","top_iconclose", $imgsrc);
			}
			$(this).children("img").attr("src",$imgsrc);
			$("#bdsCB_" + $(this).attr("id")).toggle();
			//Ruhig zum Anker springen
			//return false;
		});
	 });
	
	$('#buttonFav').jFav();
	
});