<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><description>

       








	join our mailing list
* indicates required

Email Address *


		
			
			
		
		
	Close



var fnames = new Array();var ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='MMERGE2';ftypes[2]='zip';fnames[3]='MMERGE3';ftypes[3]='url';
try {
    var jqueryLoaded=jQuery;
    jqueryLoaded=true;
} catch(err) {
    var jqueryLoaded=false;
}
var head= document.getElementsByTagName('head')[0];
if (!jqueryLoaded) {
    var script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js';
    head.appendChild(script);
    if (script.readyState &amp;&amp; script.onload!==null){
        script.onreadystatechange= function () {
              if (this.readyState == 'complete') mce_preload_check();
        }    
    }
}
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'http://downloads.mailchimp.com/js/jquery.form-n-validate.js';
head.appendChild(script);
var err_style = '';
try{
    err_style = mc_custom_error_style;
} catch(e){
    err_style = 'margin: 1em 0 0 0; padding: 1em 0.5em 0.5em 0.5em; background: FFEEEE none repeat scroll 0% 0%; font-weight: bold; float: left; z-index: 1; width: 80%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; color: FF0000;';
}
var head= document.getElementsByTagName('head')[0];
var style= document.createElement('style');
style.type= 'text/css';
if (style.styleSheet) {
  style.styleSheet.cssText = '.mce_inline_error {' + err_style + '}';
} else {
  style.appendChild(document.createTextNode('.mce_inline_error {' + err_style + '}'));
}
head.appendChild(style);
setTimeout('mce_preload_check();', 250);

var mce_preload_checks = 0;
function mce_preload_check(){
    if (mce_preload_checks&gt;40) return;
    mce_preload_checks++;
    try {
        var jqueryLoaded=jQuery;
    } catch(err) {
        setTimeout('mce_preload_check();', 250);
        return;
    }
    try {
        var validatorLoaded=jQuery("#fake-form").validate({});
    } catch(err) {
        setTimeout('mce_preload_check();', 250);
        return;
    }
    mce_init_form();
}
function mce_init_form(){
    jQuery(document).ready( function($) {
      var options = { errorClass: 'mce_inline_error', errorElement: 'div', onkeyup: function(){}, onfocusout:function(){}, onblur:function(){}  };
      var mce_validator = $("#mc-embedded-subscribe-form").validate(options);
      $("#mc-embedded-subscribe-form").unbind('submit');//remove the validator so we can get into beforeSubmit on the ajaxform, which then calls the validator
      options = { url: 'http://viennacircle.us2.list-manage.com/subscribe/post-json?u=953dc33ea91ef2e9fa0158928&amp;id=6172e3cb14&amp;c=?', type: 'GET', dataType: 'json', contentType: "application/json; charset=utf-8",
                    beforeSubmit: function(){
                        $('#mce_tmp_error_msg').remove();
                        $('.datefield','#mc_embed_signup').each(
                            function(){
                                var txt = 'filled';
                                var fields = new Array();
                                var i = 0;
                                $(':text', this).each(
                                    function(){
                                        fields[i] = this;
                                        i++;
                                    });
                                $(':hidden', this).each(
                                    function(){
                                        if (fields.length == 2) fields[2] = {'value':1970};//trick birthdays into having years
                                    	if ( fields[0].value=='MM' &amp;&amp; fields[1].value=='DD' &amp;&amp; fields[2].value=='YYYY' ){
                                    		this.value = '';
									    } else if ( fields[0].value=='' &amp;&amp; fields[1].value=='' &amp;&amp; fields[2].value=='' ){
                                    		this.value = '';
									    } else {
	                                        this.value = fields[0].value+'/'+fields[1].value+'/'+fields[2].value;
	                                    }
                                    });
                            });
                        return mce_validator.form();
                    }, 
                    success: mce_success_cb
                };
      $('#mc-embedded-subscribe-form').ajaxForm(options);      
      
    });
}
function mce_success_cb(resp){
    $('#mce-success-response').hide();
    $('#mce-error-response').hide();
    if (resp.result=="success"){
        $('#mce-'+resp.result+'-response').show();
        $('#mce-'+resp.result+'-response').html(resp.msg);
        $('#mc-embedded-subscribe-form').each(function(){
            this.reset();
    	});
    } else {
        var index = -1;
        var msg;
        try {
            var parts = resp.msg.split(' - ',2);
            if (parts[1]==undefined){
                msg = resp.msg;
            } else {
                i = parseInt(parts[0]);
                if (i.toString() == parts[0]){
                    index = parts[0];
                    msg = parts[1];
                } else {
                    index = -1;
                    msg = resp.msg;
                }
            }
        } catch(e){
            index = -1;
            msg = resp.msg;
        }
        try{
            if (index== -1){
                $('#mce-'+resp.result+'-response').show();
                $('#mce-'+resp.result+'-response').html(msg);            
            } else {
                err_id = 'mce_tmp_error_msg';
                html = ' '+msg+'';
                
                var input_id = '#mc_embed_signup';
                var f = $(input_id);
                if (ftypes[index]=='address'){
                    input_id = '#mce-'+fnames[index]+'-addr1';
                    f = $(input_id).parent().parent().get(0);
                } else if (ftypes[index]=='date'){
                    input_id = '#mce-'+fnames[index]+'-month';
                    f = $(input_id).parent().parent().get(0);
                } else {
                    input_id = '#mce-'+fnames[index];
                    f = $().parent(input_id).get(0);
                }
                if (f){
                    $(f).append(html);
                    $(input_id).focus();
                } else {
                    $('#mce-'+resp.result+'-response').show();
                    $('#mce-'+resp.result+'-response').html(msg);
                }
            }
        } catch(e){
            $('#mce-'+resp.result+'-response').show();
            $('#mce-'+resp.result+'-response').html(msg);
        }
    }
}

</description><title>Vienna Circle</title><generator>Tumblr (3.0; @viennacircleband)</generator><link>http://viennacircle.co.uk/</link><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/viennacircle" /><feedburner:info uri="viennacircle" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://tumblr.superfeedr.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item><title>
It’s almost three years since we released our debut album ‘White Clouds’. 
Thanks to our friends...</title><description>&lt;p&gt;&lt;span&gt;&lt;img src="http://media.tumblr.com/tumblr_lnk5s81YWN1qjhgio.jpg" align="middle"/&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;It’s almost three years since we released our debut album ‘White Clouds’. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Thanks to our friends and supporters who spread the word of the release, it achieved more than we ever expected. After all this time, it&amp;#8217;s a real honour to be sending copies of White Clouds to new fans on every continent.&lt;/p&gt;
&lt;p&gt;&lt;span&gt;We want to thank all of you for telling people about our music, sharing links to our &lt;a href="http://viennacircle.co.uk"&gt;website&lt;/a&gt; and &lt;a href="http://click.linksynergy.com/fs-bin/stat?id=mMH4wOYefOs&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fgb%2Falbum%2Fwhite-clouds%2Fid302519517%3Fuo%3D4%26partnerId%3D30"&gt;iTunes&lt;/a&gt;, and talking about us on &lt;a href="http://facebook.com/viennacircleband"&gt;facebook&lt;/a&gt;. This genuinely made a difference to sales of the first album, and it means we have a budget to make the second album even better!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Our facebook followers will already know that production for the next album has begun. We just spent a week at &lt;a href="http://monkeypuzzlehouse.com"&gt;Monkey Puzzle House&lt;/a&gt;, a fine recording studio in Suffolk where we completed the drums, bass and guitar.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt; &lt;/span&gt;You can subscribe to this site to see pictures of the session in the near future, or ‘like’ our facebook page for a sneak peek at some snaps now.&lt;/p&gt;
&lt;p&gt;&lt;span&gt; &lt;/span&gt;Meanwhile, our first album is still available &lt;a href="https://www.paypal.com/uk/cgi-bin/webscr?cmd=_flow&amp;amp;SESSION=KK2RVfoGyv-CWbyxOjIBILOP1myU9Uno0H328lrSlJrgWrejjypQSwVWEiu&amp;amp;dispatch=50a222a57771920b6a3d7b606239e4d529b525e0b7e69bf0224adecfb0124e9b61f737ba21b08198d7f14ce3f1c1eb3b719ca749cb816560"&gt;directly from us&lt;/a&gt; or via most digital music stores. Please ask your friends to come to viennacircle.co.uk and listen to the samples with the soundcloud player on the left, or they can go straight to &lt;a href="http://click.linksynergy.com/fs-bin/stat?id=mMH4wOYefOs&amp;amp;offerid=146261&amp;amp;type=3&amp;amp;subid=0&amp;amp;tmpid=1826&amp;amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fgb%2Falbum%2Fwhite-clouds%2Fid302519517%3Fuo%3D4%26partnerId%3D30"&gt;iTunes&lt;/a&gt; if they want MP3s.&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks again, and remember to look out for our next album!&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;em&gt;Photograph by Alex Carroll&lt;/em&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;</description><link>http://viennacircle.co.uk/post/7046185900</link><guid>http://viennacircle.co.uk/post/7046185900</guid><pubDate>Wed, 29 Jun 2011 16:37:00 +0100</pubDate><category>white clouds</category><category>monkey puzzle house</category><category>vienna circle</category><category>recording</category><category>facebook</category></item><item><title>Classic Rock magazine</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_lmxhk2d8ML1qlwznvo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Classic Rock magazine&lt;/p&gt;</description><link>http://viennacircle.co.uk/post/6617072382</link><guid>http://viennacircle.co.uk/post/6617072382</guid><pubDate>Fri, 17 Jun 2011 10:40:51 +0100</pubDate><category>press</category><category>feature</category><category>classic rock</category><category>vienna circle</category></item></channel></rss>

