$j().ready(function() {

   $j('#in6_top_rhs').parent().css('vertical-align','top');

/* TV regions dropdown onchange functionality */
$j('select.search_field3').change(function(){
   window.open(this.options[this.selectedIndex].value,'_top');
});


/* changing background of boxes that has not enough amount of content on regional pages */
$j('body.west_country2').each(function(){
   if ( $j('#in3_center_content').height() < 170 ) {    $j('#in3_center_bottom').css('background','url(http://www.digitaluk.co.uk/__data/assets/image/0005/21011/in3_center_top_mirror.jpg) no-repeat');};
});



/* remove go button on funnelback search page*/
$j('#searchSortFilterForm input[type=submit]').hide();


});