

/**
 * Creating rounded corners for IE
 */

if ( $.browser.msie ) {  
 
	var cornerRadius = '10px';

	$('#footer h2').corner(cornerRadius);
	$('.product-highlight').corner(cornerRadius);
	
	if( parseInt($.browser.version, 10) < 8 )
	{
		// special stuff for IE 7
	}
	
}

$(document).ready(
  function()
  {
    $("a#set_branche_power").click(
      function()
      {
        document.cookie = 'bb-preferred-branche=power; expires=Thu, 2 Aug 2021 20:47:11 UTC; path=/'
      }
    );

    $("a#set_branche_hearing").click(
      function()
      {
        document.cookie = 'bb-preferred-branche=hearing; expires=Thu, 2 Aug 2021 20:47:11 UTC; path=/'
      }
    );
  }
);


/**
* jTwitter
*/
$.jTwitter('BatteryBenelux', 1, function(data){
$('#footer-twitter-content').empty();
$.each(data, function(i, post){
$('#footer-twitter-content').append(
' <div class="txt">'
+ post.text
+' </div>'
);
});
}); 
