/*!
 * Pharma-networx ContentInjector
 * Modul Breidbach v 0.2
 *
 * http://www.pharma-networx.de
 *
 * Copyright 2011, Pharma-networx GmbH
 * 
 *
 * Datum: Sonntag 21. August 2011
 */
 
 
 
 
var user = 4;
	
$(document).ready(function(){
AktMeldung_aufrufen ();
});

function AktMeldung_aufrufen () {
$.getJSON('http://www.pharma-networx.de/projekte/ajax/json/pxjsonbreidbach_v01.asp?jsoncallback=?', function(jsondata){
  $("#pxcanvas").empty();
  $("#pxcanvas").append('<div id="shoptipp">Tipp: Besuchen Sie auch unseren <a href= "http://www.uhren-schmuck-breidbach.de" target="_blank">Online Shop</a>!</div>');
        $.each(jsondata.Meldung, function(val, ind) {  
            $("#pxcanvas").append('<div id="headline'+val+'" class="headline"><marquee behavior="slide" width="370" loop="1000" style="padding-top: 8px;"><a href="#"> ---&nbsp;'+ ind.Heading +' --- </a></marquee></div>');
        }); 
        $(".headline").click(function (){
    		  $("#pxcanvas").empty();
          $("#breidbachmain").empty();
                $.each(jsondata.Meldung, function(val, ind) {  
                    $("#breidbachmain").append('<div style="font-weight: bold; margin-top:30px; margin-bottom:40px;	text-decoration: underline; font-size: 16px; text-align: left;">Aktuelle Angebote</div><ul style="width: 94%; margin-bottom: 30px;"><li type=square style="font-weight: bold; text-align: left;">'+ ind.Heading +'</li></ul><div style="text-align:center; width: 94%;">');
                    if( ind.Imgname == null || ind.Imgname == 'leer') {
                    $("#breidbachmain").append('');}
                    else  {
                    $("#breidbachmain").append('<div style="float:right; margin: 0 10px 10px 10px;" id="bildblob"><IMG SRC="http://www.px-filmserver.de/'+ ind.Imgname +'"></div>');
                    } 
                    $("#breidbachmain").append('<div style="position: relative;">'+  ind.Infos  +'</div><div style="clear:both;"></div>');
                    $("#breidbachmain").append('<div style="text-align: right; margin: 20px 20px 0 0;"><a href="html/main.html">zurück</a></div>');
                });           
				});

});  
}
